From 9217712a31e259f812b9eeab80497816e3203f8d Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Mon, 12 Dec 2022 13:14:51 +1300 Subject: [PATCH] Add kermit color and fix contrast ratio of blue+red --- colors.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/colors.ts b/colors.ts index 2329898..00888f1 100644 --- a/colors.ts +++ b/colors.ts @@ -11,9 +11,10 @@ export const lightColors = [ export const darkColors = [ {hex: DefaultTheme.colors.primary, name: 'Purple'}, - {hex: '#007AFF', name: 'Blue'}, + {hex: '#0051a9', name: 'Blue'}, {hex: '#000000', name: 'Black'}, - {hex: '#CD5C5C', name: 'Red'}, + {hex: '#863c3c', name: 'Red'}, + {hex: '#1c6000', name: 'Kermit'}, ] export const colorShade = (color: any, amount: number) => {