Add Blue Streak Light, and update dark theme

This commit is contained in:
Veronica Berglyd Olsen
2025-06-06 18:25:45 +02:00
parent d280cb510d
commit 0a37981251
3 changed files with 82 additions and 6 deletions
+1 -1
View File
@@ -481,7 +481,7 @@ class GuiTheme:
# Assume #RRGGBBAA and convert to #AARRGGBB
return QColor.fromString(f"#{value[7:9]}{value[1:7]}")
elif ":" in value:
# Colour name and alpha
# Colour name and lighter, darker or alpha
name, _, adjust = value.partition(":")
color = QColor(self._qColors.get(name.strip(), default))
if adjust.startswith("L"):