From 9471d7ce18e66af5c63b19f3fc9e4fc22c14db2d Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Mon, 12 Feb 2024 17:05:24 +1300 Subject: [PATCH] Update dark colors The "Dark orange" was either too light for the contrast ratio, or too close to dark red so I collapsed the options. --- colors.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/colors.ts b/colors.ts index 8f16216..76784b3 100644 --- a/colors.ts +++ b/colors.ts @@ -17,9 +17,8 @@ export const DARK_COLORS = [ { hex: "#000000", name: "Black" }, { hex: "#863c3c", name: "Brandy" }, { hex: "#1c6000", name: "Kermit" }, - { hex: "#8A2BE2", name: "Violet" }, + { hex: "#990000", name: "Dark red" }, { hex: "#6A5ACD", name: "Slate Blue" }, - { hex: "#CC3700", name: "Dark Orange" }, ]; export function darkenRgba(rgba: string, amount: number) {