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

View File

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