-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (47 loc) · 1.37 KB
/
tailwind.config.js
File metadata and controls
47 lines (47 loc) · 1.37 KB
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
46
47
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#6366f1',
dark: '#4f46e5',
},
bg: {
darkest: '#1a1a1a',
darker: '#242424',
dark: '#2d2d2d',
DEFAULT: '#333333',
light: '#3d3d3d',
lighter: '#474747',
},
text: {
primary: '#ffffff',
secondary: '#b0b0b0',
tertiary: '#888888',
muted: '#666666',
},
border: {
DEFAULT: '#404040',
strong: '#505050',
subtle: '#333333',
},
accent: {
primary: '#6366f1',
secondary: '#8b5cf6',
success: '#22c55e',
warning: '#f59e0b',
danger: '#ef4444',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
}