-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 1011 Bytes
/
tailwind.config.js
File metadata and controls
40 lines (40 loc) · 1011 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./templates/**/*.html', './assets/src/**/*.{js,jsx}'],
theme: {
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif'],
'logo': ['Comfortaa', 'cursive'],
},
extend: {
minWidth: {
'80': '20rem',
},
zIndex: {
'dropdown': '10',
'sticky': '20',
'navbar': '30',
'modal-backdrop': '40',
'modal': '50',
'toast': '9999',
'tooltip': '70',
},
colors: {
w: {
bg: '#0a0e1a',
surface: '#111827',
card: '#1a2235',
pink: '#e84393',
pinkL: '#fd79a8',
purple: '#6c5ce7',
purpleL: '#a29bfe',
cyan: '#00cec9',
text: '#f1f5f9',
sub: '#94a3b8',
muted: '#64748b',
line: 'rgba(255,255,255,0.07)',
}
},
},
},
}