Files
usa/tailwind.config.js
2026-03-02 18:39:29 +08:00

47 lines
1.2 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {
'landscape-sm': { raw: '(orientation: landscape) and (max-height: 768px)' },
},
keyframes: {
'vert-marquee': {
'0%': { transform: 'translateY(0)' },
'100%': { transform: 'translateY(-50%)' },
},
ticker: {
from: { transform: 'translateX(0)' },
to: { transform: 'translateX(-50%)' },
},
},
animation: {
'vert-marquee': 'vert-marquee 25s linear infinite',
ticker: 'ticker var(--ticker-duration, 40s) linear infinite',
},
fontFamily: {
orbitron: ['Orbitron', 'sans-serif'],
},
colors: {
military: {
dark: '#0A0F1C',
panel: '#111827',
border: '#1F2937',
accent: '#00D4AA',
us: '#3B82F6',
iran: '#EF4444',
neutral: '#9CA3AF',
'neutral-dim': '#6B7280',
'text-primary': '#F3F4F6',
'text-secondary': '#D1D5DB',
},
},
},
},
plugins: [],
}