hit-server-manager/frontend/tailwind.config.js

31 lines
676 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
bg: '#FAFAF9',
card: '#F4F4F2',
cardBorder: '#E5E7EB',
text: '#1A1A1A',
'text-secondary': '#6B7280',
hover: '#D04A0F',
accent: '#E95A1B',
},
keyframes: {
'fade-up': {
'0%': { opacity: '0', transform: 'translateY(8px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
},
animation: {
'fade-up': 'fade-up 300ms ease-out forwards',
},
},
},
plugins: [],
}