ui: add blue ui color

This commit is contained in:
Travis Abendshien
2025-01-03 04:23:29 -08:00
parent 0e7f75ec29
commit 2c91cf62ec

View File

@@ -25,7 +25,8 @@ class UiColor(IntEnum):
THEME_LIGHT = 2
RED = 3
GREEN = 4
PURPLE = 5
BLUE = 5
PURPLE = 6
TAG_COLORS: dict[TagColor, dict[ColorType, Any]] = {
@@ -309,6 +310,12 @@ UI_COLORS: dict[UiColor, dict[ColorType, Any]] = {
ColorType.LIGHT_ACCENT: "#DDFFCC",
ColorType.DARK_ACCENT: "#0d3828",
},
UiColor.BLUE: {
ColorType.PRIMARY: "#3b87f0",
ColorType.BORDER: "#4e95f2",
ColorType.LIGHT_ACCENT: "#aedbfa",
ColorType.DARK_ACCENT: "#122948",
},
UiColor.PURPLE: {
ColorType.PRIMARY: "#C76FF3",
ColorType.BORDER: "#c364f2",