34 lines
896 B
JavaScript
34 lines
896 B
JavaScript
module.exports = {
|
|
content: [
|
|
'./resources/**/*.blade.php',
|
|
'./vendor/filament/**/*.blade.php',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
dark: '#111',
|
|
neon_green: '#00ff00',
|
|
neon_pink: '#ff00de',
|
|
gray_800: '#1f2937',
|
|
gray_900: '#111827',
|
|
},
|
|
boxShadow: {
|
|
neon: '0 0 15px rgba(0, 255, 0, 0.5)',
|
|
},
|
|
textShadow: {
|
|
glow: '0 0 10px rgba(0, 255, 0, 0.7)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
require('@tailwindcss/typography'),
|
|
function ({ addUtilities }) {
|
|
addUtilities({
|
|
'.text-glow': {
|
|
textShadow: '0 0 10px rgba(0, 255, 0, 0.7)',
|
|
},
|
|
});
|
|
},
|
|
],
|
|
}; |