-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
34 lines (34 loc) · 1.13 KB
/
tailwind.config.cjs
File metadata and controls
34 lines (34 loc) · 1.13 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/**/*.{html,css,js}', './src/**/**/*.vue'],
darkMode: 'class',
theme: {
extend: {
colors: {
'primary': 'var(--primary)',
'secondary': 'var(--secondary)',
'tertiary': 'var(--tertiary)',
'color': 'var(--color)',
'accent-primary': 'var(--accent-primary)',
'accent-primary-state': 'var(--accent-primary-state)',
'industrial-dark': '#1a1a1a',
'industrial-gray': '#2d2d2d',
'industrial-light': '#404040',
'industrial-accent': '#ff6b35',
'industrial-blue': '#4a9eff',
'industrial-green': '#00d084',
'industrial-yellow': '#ffb800',
'industrial-red': '#ff4757',
'industrial-purple': '#be29ec',
'industrial-orange': '#ffa801',
},
fontFamily: {
industrial: ['Orbitron', 'monospace', 'sans-serif'],
},
boxShadow: {
'industrial': '0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2)',
'industrial-inset': 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.3)',
},
},
},
}