-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (43 loc) · 922 Bytes
/
tailwind.config.js
File metadata and controls
44 lines (43 loc) · 922 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
33
34
35
36
37
38
39
40
41
42
43
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// Light theme colors
light: {
bg: {
primary: '#ffffff',
secondary: '#f8fafc',
tertiary: '#f1f5f9',
},
text: {
primary: '#0f172a',
secondary: '#475569',
tertiary: '#64748b',
},
border: '#e2e8f0',
},
// Dark theme colors
dark: {
bg: {
primary: '#0f172a',
secondary: '#1e293b',
tertiary: '#334155',
},
text: {
primary: '#f8fafc',
secondary: '#cbd5e1',
tertiary: '#94a3b8',
},
border: '#334155',
},
},
},
},
plugins: [],
}