HH/tailwind.config.js
2026-04-19 10:53:12 +03:00

26 lines
523 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./templates/**/*.html',
'./static/js/**/*.js',
'./kpi\'s_references/**/*.html',
],
theme: {
extend: {
fontFamily: {
'inter': ['Inter', 'sans-serif'],
},
colors: {
'navy': '#005696',
'blue': '#007bbd',
'light': '#eef6fb',
'slate': '#64748b',
'success': '#10b981',
'warning': '#f59e0b',
'danger': '#ef4444',
},
},
},
plugins: [],
}