From 1f03bd1ecadf3200357943f6309c13e5d18805c3 Mon Sep 17 00:00:00 2001 From: Sarah John <104778286+sarahjohn1@users.noreply.github.com> Date: Fri, 13 Dec 2024 12:35:59 -0500 Subject: [PATCH] updating high contrast and high contrast (dark) color palettes (#92) This pull request would close #87 Updated the color palettes for both high contrast and high contrast (dark). From the re --------- Co-authored-by: Diego Temkin <65834932+dtemkin1@users.noreply.github.com> --- src/lib/colors.ts | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/src/lib/colors.ts b/src/lib/colors.ts index a285bd3..91319ef 100644 --- a/src/lib/colors.ts +++ b/src/lib/colors.ts @@ -45,14 +45,14 @@ const highContrast: ColorScheme = { name: "High Contrast", colorMode: "light", backgroundColors: [ - "#D32F2F", - "#2E7D32", - "#1565C0", - "#BF360C", - "#00838f", - "#AD1457", - "#827717", - "#795548", + "#FF6B6B", + "#FFD93D", + "#4FC3F7", + "#81C784", + "#C580D1", + "#FFADC5", + "#309BF3", + "#FF8A65", ], }; @@ -60,16 +60,14 @@ const highContrastDark: ColorScheme = { name: "High Contrast (Dark)", colorMode: "dark", backgroundColors: [ - "#36C0A5", - "#5EBEF1", - "#CE9CD4", - "#EA636B", - "#FF995C", - "#F7CD20", - "#47CE80", - "#FFAEB4", - "#AFDDF9", - "#C2CCD0", + "#EB7070", + "#FFE066", + "#67D5E3", + "#7BE27B", + "#B584E6", + "#FF85C0", + "#66B2FF", + "#FFA570", ], };