diff --git a/tagstudio/src/core/palette.py b/tagstudio/src/core/palette.py index 82710b55..45c09561 100644 --- a/tagstudio/src/core/palette.py +++ b/tagstudio/src/core/palette.py @@ -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",