-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.cjs
42 lines (42 loc) · 1.19 KB
/
tailwind.config.cjs
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
41
42
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
},
darkMode: 'media',
ux: {
themes: {
light: {
'color-scheme': 'light',
primary: 'hsl(0 0% 5.098%)',
secondary: 'hsl(0 1.9608% 10%)',
accent: 'hsl(0 0% 14.902%)',
neutral: 'hsl(0 0% 0%)',
info: 'hsl(186.3996 64.5332% 61.9566%)',
success: 'hsl(156.3531 98.7858% 70.4206%)',
warning: 'hsl(40.5761 100% 70.509%)',
danger: 'hsl(7.4376 100% 75.3917%)',
'surface-100': 'hsl(180 100% 100%)',
'surface-200': 'hsl(0 0% 94.902%)',
'surface-300': 'hsl(0 1.9608% 90%)'
},
dark: {
'color-scheme': 'dark',
primary: 'hsl(0 0% 94.902%)',
secondary: 'hsl(0 1.9608% 90%)',
accent: 'hsl(0 0% 85.098%)',
neutral: 'hsl(0 0% 100%)',
info: 'hsl(186.3996 64.5332% 38.0434%)',
success: 'hsl(156.3531 98.7858% 29.5794%)',
warning: 'hsl(40.5761 100% 29.491%)',
danger: 'hsl(7.4376 100% 24.6083%)',
'surface-100': 'hsl(0 0% 0%)',
'surface-200': 'hsl(0 0% 5.098%)',
'surface-300': 'hsl(0 1.9608% 10%)'
}
}
},
plugins: []
}