From 2c91cf62ec8154487d6b100db0d5df1a347521d9 Mon Sep 17 00:00:00 2001 From: Travis Abendshien <46939827+CyanVoxel@users.noreply.github.com> Date: Fri, 3 Jan 2025 04:23:29 -0800 Subject: [PATCH] ui: add blue ui color --- tagstudio/src/core/palette.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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",