-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
37 lines (36 loc) · 873 Bytes
/
tailwind.config.cjs
File metadata and controls
37 lines (36 loc) · 873 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
const path = require('path');
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [path.join(__dirname, 'index.html'), path.join(__dirname, 'assets/**/*.js')],
theme: {
extend: {
fontFamily: {
sans: [
'Inter',
'ui-sans-serif',
'system-ui',
'PingFang SC',
'Microsoft YaHei',
'Segoe UI',
'Roboto',
'Helvetica',
'Arial',
'sans-serif'
],
display: ['Space Grotesk', 'Inter', 'ui-sans-serif', 'system-ui', 'sans-serif']
},
colors: {
ace: {
emerald: '#06eca3',
blue: '#2aa9ff'
}
},
boxShadow: {
glass: '0 20px 60px rgba(2, 6, 23, 0.55)',
ring: '0 0 0 1px rgba(148, 163, 184, 0.12) inset'
}
}
},
plugins: []
};