From c822acb54471e32435eb142800635364c8a5751f Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Mon, 12 Feb 2024 17:07:17 +1300 Subject: [PATCH] Rename Dark red color and change Slate blue I didn't like the look of slate blue on a light theme so i replaced it with this dark magenta instead. --- colors.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colors.ts b/colors.ts index 76784b3..68775cb 100644 --- a/colors.ts +++ b/colors.ts @@ -17,8 +17,8 @@ export const DARK_COLORS = [ { hex: "#000000", name: "Black" }, { hex: "#863c3c", name: "Brandy" }, { hex: "#1c6000", name: "Kermit" }, - { hex: "#990000", name: "Dark red" }, - { hex: "#6A5ACD", name: "Slate Blue" }, + { hex: "#990000", name: "Red" }, + { hex: "#660066", name: "Magenta" }, ]; export function darkenRgba(rgba: string, amount: number) {