forked from ayush585/edgex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) Β· 827 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
34 lines (34 loc) Β· 827 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class', // β
Enable dark mode via class (very important!)
content: [
"./index.html",
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'], // Reflect-style font
},
colors: {
'midnight': '#0f0f1b',
'neon-purple': '#a855f7',
'glass': 'rgba(255, 255, 255, 0.05)',
'reflect-bg': '#0a0a14',
'reflect-card': '#111122',
},
boxShadow: {
glow: '0 0 30px rgba(168, 85, 247, 0.4)',
},
backgroundImage: {
'radial-glow': 'radial-gradient(circle at center, #a855f7, #0a0a14)',
},
blur: {
xs: '2px',
},
},
},
plugins: [
require('@tailwindcss/forms'),
],
};