forked from EdgeTTS/EdgeTTS.github.io
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 906 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 906 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{tsx,ts}', './public/index.html'],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#1a1a1a',
secondary: '#252525',
tertiary: '#333',
},
accent: {
DEFAULT: '#0d6efd',
hover: '#0b5ed7',
glow: 'rgba(13, 110, 253, 0.3)',
},
border: '#404040',
},
fontFamily: {
sans: [
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
'sans-serif',
],
mono: ['Consolas', 'Monaco', 'Courier New', 'monospace'],
},
borderRadius: {
DEFAULT: '8px',
lg: '12px',
},
transitionDuration: {
DEFAULT: '200ms',
},
},
},
plugins: [],
};