From 7a36d93d596ae63bfdf280bc3d2ed7dbdef7def2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Tue, 15 Sep 2026 10:37:52 -0700 Subject: [PATCH 1/4] Styles: remove dead color usage --- data/stylesheet/_index.scss | 11 ----------- src/Views/SystemView/SystemMemoryView.vala | 7 ------- 2 files changed, 18 deletions(-) diff --git a/data/stylesheet/_index.scss b/data/stylesheet/_index.scss index dda034a08..5118d7a43 100644 --- a/data/stylesheet/_index.scss +++ b/data/stylesheet/_index.scss @@ -5,12 +5,9 @@ --BANANA-700: #d48e15; --BANANA-900: #ad5f00; - --BLUEBERRY-100: #8cd5ff; --BLUEBERRY-300: #64baff; --BLUEBERRY-500: #3689e6; - --GRAPE-500: #a56de2; - --LIME-300: #9bdb4d; --ORANGE-100: #ffc27d; @@ -69,14 +66,6 @@ roundy-label:hover:selected { } } -.grape_500 { - background-color: color-mix(in srgb, var(--GRAPE-500) 60%, transparent); -} - -.blueberry_100 { - background-color: color-mix(in srgb, var(--BLUEBERRY-100) 60%, transparent); -} - .usage-label-container { backdrop-filter: blur(12px); background-color: #{'color-mix(in srgb, @base_color 20%, transparent)'}; diff --git a/src/Views/SystemView/SystemMemoryView.vala b/src/Views/SystemView/SystemMemoryView.vala index d2ba9a1a1..ce568151e 100644 --- a/src/Views/SystemView/SystemMemoryView.vala +++ b/src/Views/SystemView/SystemMemoryView.vala @@ -28,14 +28,7 @@ public class Monitor.SystemMemoryView : Monitor.WidgetResource { memory_chart = new Chart (1); memory_chart.set_serie_color (0, Utils.Colors.get_rgba_color (Utils.Colors.LIME_300)); - // memory_used_label.set_color ("grape_500"); - // memory_chart.set_serie_color (1, Utils.Colors.get_rgba_color (Utils.Colors.LIME_300)); - // memory_shared_label.set_color ("blueberry_100"); - - // memory_chart.set_serie_color (2, Utils.Colors.get_rgba_color (Utils.Colors.LIME_500)); - // memory_chart.set_serie_color (3, Utils.Colors.get_rgba_color (Utils.Colors.LIME_700)); - // memory_chart.set_serie_color (4, Utils.Colors.get_rgba_color (Utils.Colors.LIME_900)); main_chart = memory_chart; set_main_chart_overlay (memory_usage_grid ()); From 104a67a44941a417290b57a57e37e60d2cf7ab3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Tue, 15 Sep 2026 10:38:25 -0700 Subject: [PATCH 2/4] More dead styles --- data/stylesheet/_index.scss | 8 -------- 1 file changed, 8 deletions(-) diff --git a/data/stylesheet/_index.scss b/data/stylesheet/_index.scss index 5118d7a43..21a31a2e8 100644 --- a/data/stylesheet/_index.scss +++ b/data/stylesheet/_index.scss @@ -203,11 +203,3 @@ header.small-label { } } } - -.bold { - font-weight: bold; -} - -.text-secondary { - color: var(--SILVER-700); -} From a5f57c8e844b65ac98f3f06decf3a6f9fd88f730 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Tue, 15 Sep 2026 10:39:15 -0700 Subject: [PATCH 3/4] Dead styles --- data/stylesheet/_index.scss | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/data/stylesheet/_index.scss b/data/stylesheet/_index.scss index 21a31a2e8..da96b48e0 100644 --- a/data/stylesheet/_index.scss +++ b/data/stylesheet/_index.scss @@ -153,15 +153,6 @@ header.small-label { } -.command_wrapper { - background-color: #fdf6e3; - border-radius: 3px; - box-shadow: - 0 1px 1px color-mix(in srgb, black 12%, transparent), - 0 1px 2px color-mix(in srgb, black 20%, transparent); - padding: 5px; -} - .command { font-family: monospace; @@ -175,14 +166,6 @@ header.small-label { border-radius: 0.75rem; } -.open_files_list_box_wrapper { - border: 1px var(--SILVER-300) solid; - - @media (prefers-color-scheme: dark) { - border: 1px var(--SILVER-900) solid; - } -} - .open_files_list_box { &_row { border-bottom: 1px var(--SILVER-100) solid; From 542c402a4ec54fb054fcb26c45afec77d1ee6953 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Tue, 15 Sep 2026 10:39:56 -0700 Subject: [PATCH 4/4] last dead color --- data/stylesheet/_index.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/data/stylesheet/_index.scss b/data/stylesheet/_index.scss index da96b48e0..840326c49 100644 --- a/data/stylesheet/_index.scss +++ b/data/stylesheet/_index.scss @@ -17,7 +17,6 @@ --SILVER-100: #fafafa; --SILVER-300: #d4d4d4; - --SILVER-500: #abacae; --SILVER-700: #7e8087; --SILVER-900: #555761;