From 020a73d095c74283d6c80426d3c3db8874409952 Mon Sep 17 00:00:00 2001 From: Travis Abendshien <46939827+CyanVoxel@users.noreply.github.com> Date: Mon, 23 Dec 2024 18:55:22 -0800 Subject: [PATCH] fix(ui): use consistent tag outline colors --- tagstudio/src/core/palette.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tagstudio/src/core/palette.py b/tagstudio/src/core/palette.py index 92dc3a51..82710b55 100644 --- a/tagstudio/src/core/palette.py +++ b/tagstudio/src/core/palette.py @@ -95,8 +95,7 @@ TAG_COLORS: dict[TagColor, dict[ColorType, Any]] = { TagColor.RED: { ColorType.PRIMARY: "#e22c3c", ColorType.TEXT: ColorType.DARK_ACCENT, - ColorType.BORDER: "#b21f2d", - # ColorType.BORDER: '#e54252', + ColorType.BORDER: "#e54252", ColorType.LIGHT_ACCENT: "#f39caa", ColorType.DARK_ACCENT: "#440d12", }, @@ -131,8 +130,7 @@ TAG_COLORS: dict[TagColor, dict[ColorType, Any]] = { TagColor.YELLOW: { ColorType.PRIMARY: "#ffd63d", ColorType.TEXT: ColorType.DARK_ACCENT, - # ColorType.BORDER: '#ffe071', - ColorType.BORDER: "#e8af31", + ColorType.BORDER: "#ffe071", ColorType.LIGHT_ACCENT: "#fff3c4", ColorType.DARK_ACCENT: "#754312", },