From 35a3ef75b61916ddd2dbf51e3e04c6d28f0936a5 Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Wed, 15 Nov 2023 10:43:47 +1300 Subject: [PATCH] Add 3 more colors to dark/light mode --- colors.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/colors.ts b/colors.ts index f669f80..b5aa218 100644 --- a/colors.ts +++ b/colors.ts @@ -6,6 +6,9 @@ export const lightColors = [ { hex: "#FA8072", name: "Salmon" }, { hex: "#FFC0CB", name: "Pink" }, { hex: "#E9DCC9", name: "Linen" }, + { hex: "#9ACD32", name: "Yellow Green" }, + { hex: "#FFD700", name: "Gold" }, + { hex: "#00CED1", name: "Dark Turquoise" }, ]; export const darkColors = [ @@ -14,6 +17,9 @@ export const darkColors = [ { hex: "#000000", name: "Black" }, { hex: "#863c3c", name: "Red" }, { hex: "#1c6000", name: "Kermit" }, + { hex: "#8A2BE2", name: "Blue Violet" }, + { hex: "#6A5ACD", name: "Slate Blue" }, + { hex: "#FF8C00", name: "Dark Orange" }, ]; export function darkenRgba(rgba: string, amount: number) {