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; };