File tree Expand file tree Collapse file tree 3 files changed +9
-11
lines changed
Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 11// DEFAULT
2- export const PRIMARY = '#E0F2E9 ' ;
3- export const SECONDARY = '#114B5F ' ;
4- export const BACKGROUND_COLOR = '#3C887E ' ;
5- export const WHITE = '#F9F7FE ' ;
6- export const BLACK = '#1B1F23 ' ;
2+ export const PRIMARY = '#272C30 ' ;
3+ export const SECONDARY = '#FFE300 ' ;
4+ export const BACKGROUND_COLOR = '#1B1F23 ' ;
5+ export const WHITE = '#C8C8C8 ' ;
6+ export const BLACK = '#3D4247 ' ;
77
88// ACTIONS
99export const SUCCESS = '#16BD04' ;
1010export const WARNING = '#ffae00' ;
1111export const ALERT = '#cc4b37' ;
1212
1313// GRAYSCALE
14- export const GRAY_LIGHT = '#AFB4BC' ;
15-
16- // GREENSCALE
17- export const GREEN = '#16BD04' ;
14+ export const GRAY_LIGHT = '#44494F' ;
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ declare module 'styled-components' {
2020 black : string ;
2121 success : string ;
2222 backgroundColor : string ;
23+ grayLight :string ;
2324 } ;
2425 typography : {
2526 FONT_REGULAR : string ;
Original file line number Diff line number Diff line change 11import { DefaultTheme } from 'styled-components' ;
2- import { colors , spacing , typography } from './src/styles/index' ;
2+ import { colors , typography } from './src/styles/index' ;
33
44const theme : DefaultTheme = {
55 space : {
@@ -16,9 +16,9 @@ const theme: DefaultTheme = {
1616 secondary : colors . SECONDARY ,
1717 black : colors . BLACK ,
1818 white : colors . WHITE ,
19-
2019 success : colors . SUCCESS ,
2120 backgroundColor : colors . BACKGROUND_COLOR ,
21+ grayLight : colors . GRAY_LIGHT
2222 } ,
2323 typography : {
2424 FONT_REGULAR : typography . FONT_FAMILY_REGULAR ,
You can’t perform that action at this time.
0 commit comments