-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtailwind.config.js
More file actions
25 lines (25 loc) · 732 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
25 lines (25 loc) · 732 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
/** Mirrors the config previously set on window.tailwind in theme.js. */
module.exports = {
content: ['./**/*.html', './*.js', '!./node_modules/**'],
darkMode: 'class',
theme: {
extend: {
fontFamily: { sans: ['Inter', 'ui-sans-serif', 'system-ui'] },
colors: {
brand: {
DEFAULT: '#ef1237',
100: '#ffd6de',
300: '#ff5775',
500: '#ef1237',
700: '#950a24'
},
basisbg: '#100f27'
},
boxShadow: {
soft: '0 8px 30px rgba(0,0,0,0.08)'
}
}
},
// flowbite toggles these at runtime, so they never appear in the scanned markup
safelist: ['hidden', 'block', 'invisible', 'visible', 'opacity-0', 'opacity-100']
};