Skip to content

Commit c201d52

Browse files
committed
style: updated colors
1 parent b10ac85 commit c201d52

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

template/src/styles/colors.ts

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
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
99
export const SUCCESS = '#16BD04';
1010
export const WARNING = '#ffae00';
1111
export 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';

template/styled.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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;

template/theme.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { DefaultTheme } from 'styled-components';
2-
import { colors, spacing, typography } from './src/styles/index';
2+
import { colors, typography } from './src/styles/index';
33

44
const 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,

0 commit comments

Comments
 (0)