forked from danielbayerlein/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlight-theme.js
More file actions
32 lines (31 loc) · 794 Bytes
/
light-theme.js
File metadata and controls
32 lines (31 loc) · 794 Bytes
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
const colors = {
grey50: '#fafafa',
grey200: '#eeeeee',
grey400: '#bdbdbd',
grey900: '#212121',
white: '#ffffff',
cyan500: '#00bcd4',
pinkA200: '#ff4081',
redA700: '#d50000',
amberA700: '#ffab00',
greenA700: '#00c853',
lightGreenA700: '#64dd17',
orangeA700: '#ff6d00'
}
export default {
palette: {
backgroundColor: colors.grey50,
borderColor: colors.grey200,
textColor: colors.grey900,
textInvertColor: colors.grey50,
canvasColor: colors.white,
primaryColor: colors.cyan500,
accentColor: colors.pinkA200,
errorColor: colors.redA700,
warnColor: colors.amberA700,
warnSecondaryColor: colors.orangeA700,
successColor: colors.greenA700,
successSecondaryColor: colors.lightGreenA700,
disabledColor: colors.grey400
}
}