Add 3 more colors to dark/light mode

This commit is contained in:
Brandon Presley 2023-11-15 10:43:47 +13:00
parent 859818e5b6
commit 35a3ef75b6
1 changed files with 6 additions and 0 deletions

View File

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