From bc6eb9b713f17a927484bda1a2530e8cb082cf6f Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Tue, 27 Sep 2022 12:26:11 +1300 Subject: [PATCH] Swap white color for linen and add Salmon+Red White is impossible to see on light theme. I want the lighter colors to be possible to select on a light theme (just looks bad) up to the user what they want, but white on white can't actually be seen at all. --- colors.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/colors.ts b/colors.ts index 2a45d6d..1aefebb 100644 --- a/colors.ts +++ b/colors.ts @@ -1,11 +1,13 @@ export const lightColors = [ {hex: '#B3E5FC', name: 'Cyan'}, {hex: '#FFC0CB', name: 'Pink'}, - {hex: '#FFFFFF', name: 'White'}, + {hex: '#E9DCC9', name: 'Linen'}, ]; export const darkColors = [ + {hex: '#FA8072', name: 'Salmon'}, {hex: '#8156A7', name: 'Purple'}, {hex: '#007AFF', name: 'Blue'}, {hex: '#000000', name: 'Black'}, + {hex: '#CD5C5C', name: 'Red'}, ];