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.
This commit is contained in:
Brandon Presley 2024-02-12 17:05:24 +13:00
parent 000f53a9fb
commit 9471d7ce18
1 changed files with 1 additions and 2 deletions

View File

@ -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) {