feat: new file
This commit is contained in:
38
tailwind.config.js
Normal file
38
tailwind.config.js
Normal file
@@ -0,0 +1,38 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
keyframes: {
|
||||
'vert-marquee': {
|
||||
'0%': { transform: 'translateY(0)' },
|
||||
'100%': { transform: 'translateY(-50%)' },
|
||||
},
|
||||
},
|
||||
animation: {
|
||||
'vert-marquee': 'vert-marquee 25s 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: [],
|
||||
}
|
||||
Reference in New Issue
Block a user