-
Notifications
You must be signed in to change notification settings - Fork 9
/
tailwind.config.js
46 lines (45 loc) · 974 Bytes
/
tailwind.config.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
41
42
43
44
45
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,css}'],
darkMode: 'class', // Enable class-based dark mode
theme: {
extend: {
colors: {
primary: {
50: '#f0f9ff',
200: '#bae6fd',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
},
surface: {
50: '#f8fafc',
100: '#f1f5f9',
200: '#e2e8f0',
600: '#475569',
700: '#334155',
900: '#0f172a',
},
dark: {
surface: {
50: '#18181b',
100: '#27272a',
200: '#3f3f46',
600: '#a1a1aa',
700: '#d4d4d8',
900: '#fafafa',
}
}
},
borderRadius: {
'xl': '1rem',
},
boxShadow: {
'soft': '0 2px 8px rgba(0, 0, 0, 0.05)',
}
},
},
plugins: [
require('@tailwindcss/forms')
],
}