From 39589f34f8f0d502e4295fdf6c2e9e757fd5f2dd Mon Sep 17 00:00:00 2001 From: belousovjr Date: Tue, 21 Nov 2023 13:03:42 +0200 Subject: [PATCH] Added some colors to the theme --- src/theme/colors.ts | 3 +++ src/theme/types.ts | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/theme/colors.ts b/src/theme/colors.ts index d915133..005e328 100644 --- a/src/theme/colors.ts +++ b/src/theme/colors.ts @@ -20,6 +20,9 @@ export const colors: ThemeColors = { neutralLight: "#d9d9d9", shuttleGray: "#545d6b", ebonyGray: "#1f242e", + green: '#638e5d', + red: '#b84c45', + yellow: '#c39905', }; type ButtonColorsConfig = { diff --git a/src/theme/types.ts b/src/theme/types.ts index a1a23f5..170c10f 100644 --- a/src/theme/types.ts +++ b/src/theme/types.ts @@ -17,4 +17,7 @@ export type ThemeColors = { neutralLight: string; shuttleGray: string; ebonyGray: string; + green: string; + red: string; + yellow: string; };