theme edits

This commit is contained in:
mjallen18
2025-10-24 09:58:33 -05:00
parent 1b125aecd0
commit 9582ca5392
26 changed files with 1488 additions and 726 deletions

View File

@@ -7,7 +7,7 @@
with lib;
let
cfg = config.mjallen.programs.nwg-drawer;
nord = import (lib.snowfall.fs.get-file "modules/home/desktop/theme/nord.nix");
palette = import cfg.theme.file;
in
{
imports = [ ./options.nix ];
@@ -18,13 +18,13 @@ in
home.file = {
".config/nwg-drawer/drawer.css".text = ''
window {
background-color: ${nord.polarNight.nord0}bf;
color: ${nord.snowStorm.nord5}00
background-color: ${palette.colors.bg}bf;
color: ${palette.colors.textMuted}00
}
/* search entry */
entry {
background-color: ${nord.polarNight.nord1}0f
background-color: ${palette.colors.bgAlt}0f
}
button, image {
@@ -33,7 +33,7 @@ in
}
button:hover {
background-color: ${nord.frost.nord10}1a
background-color: ${palette.colors.primary}1a
}
/* in case you wanted to give category buttons a different look */
@@ -43,12 +43,12 @@ in
#pinned-box {
padding-bottom: 5px;
border-bottom: 1px dotted ${nord.polarNight.nord3}
border-bottom: 1px dotted ${palette.colors.border}
}
#files-box {
padding: 5px;
border: 1px dotted ${nord.polarNight.nord3};
border: 1px dotted ${palette.colors.border};
border-radius: 15px
}
'';