34 lines
799 B
JavaScript
34 lines
799 B
JavaScript
module.exports = {
|
|
content: [
|
|
"./src/**/*.html",
|
|
"./src/**/*.js",
|
|
"./src/**/*.jsx",
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
glass: {
|
|
DEFAULT: 'rgba(255, 255, 255, 0.1)',
|
|
bg: '#000000',
|
|
border: '#71717a',
|
|
shadow: '#a1a1aa',
|
|
},
|
|
primary: '#22c55e',
|
|
secondary: '#5865f2',
|
|
danger: '#ef4444',
|
|
background: '#09090b',
|
|
text: '#f4f4f5',
|
|
},
|
|
boxShadow: {
|
|
glass: '0 4px 6px rgba(161, 161, 170, 0.1)',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Arial', 'sans-serif'],
|
|
},
|
|
},
|
|
variants: {},
|
|
plugins: [],
|
|
}; |