Make the faded colour available as an override colour

This commit is contained in:
Veronica Berglyd Olsen
2025-01-11 01:01:09 +01:00
parent fce18689b7
commit 31ea53135f
+10 -9
View File
@@ -427,15 +427,16 @@ class nwLabels:
"Custom": (-1.0, -1.0), "Custom": (-1.0, -1.0),
} }
THEME_COLORS = { THEME_COLORS = {
"theme": QT_TRANSLATE_NOOP("Constant", "Theme Colours"), "theme": QT_TRANSLATE_NOOP("Color", "Theme Colours"),
"default": QT_TRANSLATE_NOOP("Constant", "No Colours"), "default": QT_TRANSLATE_NOOP("Color", "No Colours"),
"red": QT_TRANSLATE_NOOP("Constant", "Red"), "faded": QT_TRANSLATE_NOOP("Color", "Faded Colour"),
"orange": QT_TRANSLATE_NOOP("Constant", "Orange"), "red": QT_TRANSLATE_NOOP("Color", "Red"),
"yellow": QT_TRANSLATE_NOOP("Constant", "Yellow"), "orange": QT_TRANSLATE_NOOP("Color", "Orange"),
"green": QT_TRANSLATE_NOOP("Constant", "Green"), "yellow": QT_TRANSLATE_NOOP("Color", "Yellow"),
"aqua": QT_TRANSLATE_NOOP("Constant", "Aqua"), "green": QT_TRANSLATE_NOOP("Color", "Green"),
"blue": QT_TRANSLATE_NOOP("Constant", "Blue"), "aqua": QT_TRANSLATE_NOOP("Color", "Aqua"),
"purple": QT_TRANSLATE_NOOP("Constant", "Purple"), "blue": QT_TRANSLATE_NOOP("Color", "Blue"),
"purple": QT_TRANSLATE_NOOP("Color", "Purple"),
} }