← Назад/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#6366f1',
dark: '#4f46e5',
},
secondary: '#10b981',
danger: '#ef4444',
warning: '#f59e0b',
piewell: '#8b5cf6',
screener: '#10b981',
openclaw: '#ef4444',
system: '#f59e0b',
affiliate: '#06b6d4',
alphapulse: '#0088cc',
options: '#a855f7',
youtube: '#ff0000',
trading: '#14b8a6',
},
animation: {
'spin': 'spin 1s linear infinite',
'fadeIn': 'fadeIn 0.3s ease',
'slideUp': 'slideUp 0.4s ease',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { opacity: '0', transform: 'translateY(50px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
},
},
},
plugins: [],
}