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

@ -7,7 +7,7 @@ use cosmic::cosmic_theme::{palette, Theme, ThemeMode};
use crate::state::State;
pub(crate) fn group_color(theme: &Theme) -> [f32; 3] {
pub(crate) fn _group_color(theme: &Theme) -> [f32; 3] {
let neutral_8 = theme.palette.neutral_8;
[neutral_8.red, neutral_8.green, neutral_8.blue]
}