change background colors

This commit is contained in:
Noa Aarts 2024-10-12 22:04:58 +02:00
parent 993d57ba00
commit 85de25bb90
Signed by: noa
GPG key ID: 1850932741EFF672
2 changed files with 5 additions and 5 deletions

View file

@ -35,6 +35,8 @@
base16 = "#d6acff"; # bright blue
base17 = "#ff92df"; # bright purple
taskbarText = base04;
background_paper = "#000000";
foreground_paper = "#26052e";
};
};

View file

@ -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));