From 85de25bb90011ec83d15587e6f22e4566111d232 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Sat, 12 Oct 2024 22:04:58 +0200 Subject: [PATCH] change background colors --- common/colors.nix | 4 +++- modules/automapaper/default.nix | 6 ++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/common/colors.nix b/common/colors.nix index e68965e..e3aadbf 100644 --- a/common/colors.nix +++ b/common/colors.nix @@ -34,7 +34,9 @@ base15 = "#a4ffff"; # bright cyan base16 = "#d6acff"; # bright blue base17 = "#ff92df"; # bright purple - taskbarText = base04; + taskbarText = base04; + background_paper = "#000000"; + foreground_paper = "#26052e"; }; }; diff --git a/modules/automapaper/default.nix b/modules/automapaper/default.nix index f4630b8..13f2207 100644 --- a/modules/automapaper/default.nix +++ b/modules/automapaper/default.nix @@ -91,10 +91,8 @@ in in highp vec2 texCoords; out vec4 stateColor; - const vec4 bgColor = ${nix-colors.lib.conversions.hexToGLSLVec config.colorScheme.palette.base00}; - // #26052e - const vec4 fgColor = ${nix-colors.lib.conversions.hexToGLSLVec config.colorScheme.palette.base01}; - // #950fad + const vec4 bgColor = ${nix-colors.lib.conversions.hexToGLSLVec config.colorScheme.palette.background_paper}; + const vec4 fgColor = ${nix-colors.lib.conversions.hexToGLSLVec config.colorScheme.palette.foreground_paper}; void main() { vec2 canvasSize = vec2 (textureSize (tex2D, 0));