fix(ui): use consistent tag outline colors

This commit is contained in:
Travis Abendshien
2024-12-23 18:55:22 -08:00
parent 431efe4fe9
commit 020a73d095

View File

@@ -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",
},