auto_sigma_rule_generator/frontend/tailwind.config.js
2025-07-08 09:10:25 -05:00

33 lines
784 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./public/index.html"
],
theme: {
extend: {
colors: {
'cve-blue': '#3b82f6',
'cve-green': '#10b981',
'cve-red': '#ef4444',
'cve-orange': '#f97316',
'cve-yellow': '#eab308',
},
animation: {
'fade-in': 'fadeIn 0.5s ease-in-out',
'slide-up': 'slideUp 0.3s ease-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { transform: 'translateY(10px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
},
},
},
plugins: [],
}