theme: Revert theming of tiling overview (fix #347)

This commit is contained in:
Victoria Brekenfeld 2024-03-11 17:07:39 +01:00
parent e959e4f1ac
commit c685440155
3 changed files with 13 additions and 11 deletions

View file

@ -96,6 +96,8 @@ pub type GlMultiError = MultiError<
pub static CLEAR_COLOR: [f32; 4] = [0.153, 0.161, 0.165, 1.0];
pub static OUTLINE_SHADER: &str = include_str!("./shaders/rounded_outline.frag");
pub static RECTANGLE_SHADER: &str = include_str!("./shaders/rounded_rectangle.frag");
pub static GROUP_COLOR: [f32; 3] = [0.788, 0.788, 0.788];
pub static ACTIVE_GROUP_COLOR: [f32; 3] = [0.58, 0.922, 0.922];
pub struct IndicatorShader(pub GlesPixelProgram);