1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 23:00:39 +02:00

feat: switch to decaycs/onedark mix theme

This commit is contained in:
oddlama 2023-09-28 18:21:16 +02:00
parent 68af1be607
commit 1907140e03
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
2 changed files with 64 additions and 37 deletions

View file

@ -1,5 +1,7 @@
{
config,
lib,
nixosConfig,
pkgs,
...
}: {
@ -50,7 +52,7 @@
gtk4.extraConfig = gtk34extraConfig;
};
home.sessionVariables.GTK_THEME = "WhiteSur-Dark-solid";
home.sessionVariables.GTK_THEME = config.gtk.theme.name;
qt = {
enable = true;
@ -58,25 +60,7 @@
};
stylix = {
polarity = "dark";
base16Scheme = {
base00 = "282c34";
base01 = "353b45";
base02 = "3e4451";
base03 = "545862";
base04 = "565c64";
base05 = "abb2bf";
base06 = "b6bdca";
base07 = "c8ccd4";
base08 = "e06c75";
base09 = "d19a66";
base0A = "e5c07b";
base0B = "98c379";
base0C = "56b6c2";
base0D = "61afef";
base0E = "c678dd";
base0F = "be5046";
};
inherit (nixosConfig.stylix) polarity base16Scheme;
targets.gtk.enable = true;
};
}