feat: respect accent colors in more places in desktop

This commit is contained in:
2026-05-24 21:29:59 +02:00
parent c731f718e9
commit 96943116f8
12 changed files with 70 additions and 20 deletions
+1 -2
View File
@@ -94,7 +94,7 @@ static uint64_t g_status_time = 0;
// ============================================================================
static mtk::Theme bt_theme() {
mtk::Theme theme = mtk::make_theme(ACCENT);
mtk::Theme theme = mtk::make_theme();
theme.window_bg = BG_COLOR;
theme.surface = Color::from_rgb(0xF5, 0xF5, 0xF5);
theme.surface_alt = Color::from_rgb(0xF8, 0xF8, 0xF8);
@@ -103,7 +103,6 @@ static mtk::Theme bt_theme() {
theme.text = TEXT_COLOR;
theme.text_muted = Color::from_rgb(0x88, 0x88, 0x88);
theme.text_subtle = DIM_TEXT;
theme.selection = ACCENT;
theme.accent_soft = ROW_HOVER;
theme.danger = RED;
theme.danger_hover = mtk::darken(RED, 18);