Skip to content

Commit 5c7255d

Browse files
committed
chore: themes
1 parent 05937f4 commit 5c7255d

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

template/styled.d.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ declare module 'styled-components' {
1818
secondary: string;
1919
white: string;
2020
black: string;
21-
green: string;
22-
grayLight: string;
2321
success: string;
2422
backgroundColor: string;
2523
};
@@ -41,8 +39,6 @@ declare module 'styled-components' {
4139
secondary: string;
4240
white: string;
4341
black: string;
44-
green: string;
45-
grayLight: string;
4642
success: string;
4743
};
4844
radii: {

template/theme.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ const theme: DefaultTheme = {
1616
secondary: colors.SECONDARY,
1717
black: colors.BLACK,
1818
white: colors.WHITE,
19-
green: colors.GREEN,
20-
grayLight: colors.GRAY_LIGHT,
19+
2120
success: colors.SUCCESS,
2221
backgroundColor: colors.BACKGROUND_COLOR,
2322
},
@@ -31,8 +30,6 @@ const theme: DefaultTheme = {
3130
secondary: colors.SECONDARY,
3231
black: colors.BLACK,
3332
white: colors.WHITE,
34-
green: colors.GREEN,
35-
grayLight: colors.GRAY_LIGHT,
3633
success: colors.SUCCESS,
3734
},
3835
radii: {
@@ -54,8 +51,8 @@ const theme: DefaultTheme = {
5451
xxl: 64,
5552
},
5653
fonts: {
57-
body: 'RobotoMono-Regular',
58-
heading: 'RobotoMono-Bold',
54+
body: typography.FONT_FAMILY_REGULAR,
55+
heading: typography.FONT_FAMILY_BOLD,
5956
},
6057
};
6158

0 commit comments

Comments
 (0)