-
Notifications
You must be signed in to change notification settings - Fork 15
/
theme.js
38 lines (34 loc) · 994 Bytes
/
theme.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { colors } from './colors.js'
export const theme = {
/* theme */
fonts: 'Roboto, sans-serif',
/*primary*/
primary900: colors.blue900,
primary800: colors.blue800,
primary700: colors.blue700,
primary600: colors.blue600,
primary500: colors.blue500,
primary400: colors.blue400,
primary300: colors.blue300,
primary200: colors.blue200,
primary100: colors.blue100,
primary050: colors.blue050,
/*secondary*/
secondary900: colors.teal900,
secondary800: colors.teal800,
secondary700: colors.teal700,
secondary600: colors.teal600,
secondary500: colors.teal500,
secondary400: colors.teal400,
secondary300: colors.teal300,
secondary200: colors.teal200,
secondary100: colors.teal100,
secondary050: colors.teal050,
/*status*/
default: colors.grey700,
error: colors.red500,
valid: colors.blue600,
warning: colors.yellow500,
disabled: colors.grey600,
focus: colors.blue600,
}