Skip to content

Commit

Permalink
tools: demo-gui: update css style
Browse files Browse the repository at this point in the history
Update GUI color scheme for improved readability.

Signed-off-by: Iuliana Prodan <[email protected]>
  • Loading branch information
iuliana-prodan authored and dbaluta committed Feb 12, 2025
1 parent b4d6a0a commit 962d65b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tools/demo-gui/demo-gui/sof_demo_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def apply_css(self):
* {
font-family: "Segoe UI", "Arial", sans-serif;
font-size: 14px;
color: #FFFFFF;
color: #020202;
}
window {
background-color: #2C3E50;
Expand All @@ -38,29 +38,29 @@ def apply_css(self):
}
button, togglebutton {
background-color: #3b3b3b;
background: #3b3b3b;
border: none;
padding: 10px;
color: #3b3b3b;
color: #020202;
}
button:hover, togglebutton:hover {
background-color: #A9A9A9;
color: #A9A9A9;
color: #020202;
}
togglebutton:checked {
background-color: #A9A9A9;
color: #A9A9A9;
color: #020202;
}
scale {
background-color: #34495E;
border-radius: 5px;
color: #FFFFFF;
}
label {
color: #A9A9A9;
color: #020202;
}
headerbar {
background-color: #2C3E50;
color: #2C3E50;
color: #FFFFFF;
}
headerbar.titlebar {
background: #2C3E50;
Expand Down

0 comments on commit 962d65b

Please sign in to comment.