From 67309a1effee4017dab86337698d2c97a70e70bf Mon Sep 17 00:00:00 2001 From: Neha Date: Wed, 23 Oct 2024 19:07:48 -0700 Subject: [PATCH] [chore] fixed colors --- styles/colors.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/styles/colors.ts b/styles/colors.ts index b172f51..230ba21 100644 --- a/styles/colors.ts +++ b/styles/colors.ts @@ -1,16 +1,16 @@ const COLORS = { navy: '#2E3A59', blue: '#4974E0', - lightBlue: '92ACED', + lightBlue: '#92ACED', green: '#0E7B30', white: '#FFFFFF', orange: '#D4874D', grey: '#636363', - lightGreen: 'E8FFEF', - veryLightGrey: 'F4F4F4', - lightOrange: 'FFF9DF', + lightGreen: '#E8FFEF', + veryLightGrey: '#F4F4F4', + lightOrange: '#FFF9DF', black: '#000000', - lightGrey: 'D9D9D9', + lightGrey: '#D9D9D9', }; export default COLORS;