Files
AiclwHome/frontend/tailwind.config.js
2026-03-10 17:13:55 +08:00

43 lines
1005 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
brand: {
orange: '#FF6B35',
'orange-light': '#FF8F66',
'orange-dark': '#E55A2B',
},
space: {
black: '#121212',
'black-light': '#1E1E1E',
'black-lighter': '#2A2A2A',
},
},
fontFamily: {
sans: ['"DM Sans"', 'system-ui', 'sans-serif'],
mono: ['"JetBrains Mono"', 'monospace'],
},
animation: {
'flow': 'flow 8s linear infinite',
'pulse-soft': 'pulse-soft 2s ease-in-out infinite',
},
keyframes: {
flow: {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-50%)' },
},
'pulse-soft': {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0.7' },
},
},
},
},
plugins: [],
}