-
Notifications
You must be signed in to change notification settings - Fork 1
/
themeColors.js
40 lines (40 loc) · 1.13 KB
/
themeColors.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
39
40
module.exports = {
hslFunction: hslString => {
return 'hsl(' + hslString + ')';
},
colors: {
light: {
background: '0 0% 100%',
foreground: '240 10% 3.9%',
primary: '240 5.9% 10%',
primaryForeground: '0 0% 98%',
secondary: '240 4.8% 95.9%',
secondaryForeground: '240 5.9% 10%',
muted: '240 4.8% 95.9%',
mutedForeground: '240 3.8% 46.1%',
accent: '240 4.8% 95.9%',
accentForeground: '240 5.9% 10%',
destructive: '0 84.2% 60.2%',
destructiveForeground: '0 0% 98%',
borderColor: '240 5.9% 90%',
// input: '240 5.9% 90%',
radius: '4',
},
dark: {
background: '240 10% 3.9%',
foreground: '0 0% 98%',
primary: '0 0% 98%',
primaryForeground: '240 5.9% 10%',
secondary: '240 3.7% 15.9%',
secondaryForeground: '0 0% 98%',
muted: '240 3.7% 15.9%',
mutedForeground: '240 5% 64.9%',
accent: '240 3.7% 15.9%',
accentForeground: '0 0% 98%',
destructive: '0 62.8% 30.6%',
destructiveForeground: '0 0% 98%',
// borderColor: '240 3.7% 15.9%',
input: '240 3.7% 15.9%',
},
},
};