diff --git a/plugins/dashboard/plugin.py b/plugins/dashboard/plugin.py index 47f5ef1..d514940 100644 --- a/plugins/dashboard/plugin.py +++ b/plugins/dashboard/plugin.py @@ -157,7 +157,7 @@ class DashboardPlugin(BasePlugin): customize_btn = QPushButton("Customize") customize_btn.setStyleSheet(f""" QPushButton {{ - background-color: {EU_COLORS['bg_panel']}; + background-color: {EU_COLORS['bg_secondary']}; color: {EU_COLORS['text_secondary']}; border: 1px solid {EU_COLORS['border_subtle']}; border-radius: 4px; @@ -222,7 +222,7 @@ class DashboardPlugin(BasePlugin): card = QFrame() card.setStyleSheet(f""" QFrame {{ - background-color: {EU_COLORS['bg_panel']}; + background-color: {EU_COLORS['bg_secondary']}; border: 1px solid {EU_COLORS['border_subtle']}; border-radius: 8px; }} @@ -285,7 +285,7 @@ class DashboardPlugin(BasePlugin): list_widget = QListWidget() list_widget.setStyleSheet(f""" QListWidget {{ - background-color: {EU_COLORS['bg_panel']}; + background-color: {EU_COLORS['bg_secondary']}; color: white; border: 1px solid {EU_COLORS['border_subtle']}; }}