ditch nix-colors

This commit is contained in:
Noa Aarts 2025-05-04 15:25:41 +02:00
parent 45766f2057
commit 2e58acb9e7
Signed by: noa
GPG key ID: 1850932741EFF672
22 changed files with 57 additions and 162 deletions

View file

@ -16,11 +16,11 @@ in
};
style = ''
#tray {
color: #${config.colorScheme.palette.taskbarText};
color: #${config.lib.stylix.colors.base04};
margin: 5px 0px;
padding: 4px 10px;
border-radius: 999px;
background-color: #${config.colorScheme.palette.taskbarBackground};
background-color: #${config.lib.stylix.colors.base10};
}
#tray > * {
@ -32,7 +32,7 @@ in
}
#tray > .needs-attention {
background-color: #${config.colorScheme.palette.base08};
background-color: #${config.lib.stylix.colors.base08};
border-radius: 999px;
}
'';