35 lines
837 B
JavaScript
35 lines
837 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./templates/**/*.{html,js}",
|
|
"./static/**/*.js",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'dark': '#0a0a0a',
|
|
'dark-lighter': '#1a1a1a',
|
|
'accent': '#3b82f6',
|
|
'accent-hover': '#2563eb',
|
|
},
|
|
fontFamily: {
|
|
'mono': ['JetBrains Mono', 'Fira Code', 'monospace'],
|
|
},
|
|
animation: {
|
|
'fade-in': 'fadeIn 0.5s ease-in-out',
|
|
'slide-up': 'slideUp 0.3s ease-out',
|
|
},
|
|
keyframes: {
|
|
fadeIn: {
|
|
'0%': { opacity: '0' },
|
|
'100%': { opacity: '1' },
|
|
},
|
|
slideUp: {
|
|
'0%': { transform: 'translateY(10px)', opacity: '0' },
|
|
'100%': { transform: 'translateY(0)', opacity: '1' },
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |