fix colors for wofi and hyprland

This commit is contained in:
Noa Aarts 2024-06-18 17:34:03 +02:00
parent 03b2f54a25
commit 9484494b01
6 changed files with 143 additions and 534 deletions

View file

@ -149,8 +149,8 @@ in
in highp vec2 texCoords;
out vec4 stateColor;
const vec4 bgColor = ${nix-colors.lib.conversions.hexToGLSLVec "26052e"}; // #26052e
const vec4 fgColor = ${nix-colors.lib.conversions.hexToGLSLVec "950fad"}; // #950fad
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
void main() {
vec2 canvasSize = vec2(textureSize(tex2D, 0));