mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-24 14:19:55 +02:00
32 lines
644 B
JavaScript
32 lines
644 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{vue,js,ts,jsx,tsx}"],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', 'sans-serif'],
|
|
technopollas: ['Technopollas', 'sans-serif'],
|
|
},
|
|
colors: {
|
|
dark: {
|
|
bg: '#121212',
|
|
card: '#1E1E1E',
|
|
text: '#FFFFFF',
|
|
accent: {
|
|
green: '#4CAF50',
|
|
red: '#F44336',
|
|
orange: '#FF9800',
|
|
yellow: '#FFEB3B',
|
|
},
|
|
},
|
|
},
|
|
borderRadius: {
|
|
'lg': '1rem',
|
|
},
|
|
}
|
|
},
|
|
plugins: [],
|
|
}
|
|
|