initial commit
This commit is contained in:
34
tailwind.config.js
Normal file
34
tailwind.config.js
Normal file
@@ -0,0 +1,34 @@
|
||||
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: [],
|
||||
};
|
||||
Reference in New Issue
Block a user