use more sensible values for styles

This commit is contained in:
Noa Aarts 2025-03-31 23:42:26 +02:00
parent debb189b24
commit cde72d8e75
Signed by: noa
GPG key ID: 1850932741EFF672

View file

@ -287,7 +287,7 @@ in
display-shader = pkgs.substituteAll { display-shader = pkgs.substituteAll {
src = ../../modules/automapaper/display-with_vars.glsl; src = ../../modules/automapaper/display-with_vars.glsl;
background = inputs.nix-colors.lib.conversions.hexToGLSLVec config.lib.stylix.colors.base00; background = inputs.nix-colors.lib.conversions.hexToGLSLVec config.lib.stylix.colors.base00;
foreground = inputs.nix-colors.lib.conversions.hexToGLSLVec config.lib.stylix.colors.base01; foreground = inputs.nix-colors.lib.conversions.hexToGLSLVec config.lib.stylix.colors.base0E;
}; };
state-shader = ../../modules/automapaper/state-game_of_life.glsl; state-shader = ../../modules/automapaper/state-game_of_life.glsl;
init-shader = ../../modules/automapaper/init.glsl; init-shader = ../../modules/automapaper/init.glsl;
@ -465,7 +465,6 @@ in
qt = { qt = {
enable = enableGraphical; enable = enableGraphical;
platformTheme.name = "adwaita"; platformTheme.name = "adwaita";
style.name = "adwaita-dark";
}; };
services = { services = {
@ -523,7 +522,6 @@ in
override = { override = {
# I liked my background colors from before, make it in more spots # I liked my background colors from before, make it in more spots
base00 = "0a000a"; base00 = "0a000a";
base01 = "192291";
}; };
targets = { targets = {
neovim.enable = false; neovim.enable = false;
@ -532,7 +530,7 @@ in
firefox.profileNames = [ "profile_0" ]; firefox.profileNames = [ "profile_0" ];
qt = { qt = {
enable = true; enable = true;
platform = "qtct"; platform = "adwaita";
}; };
}; };
}; };