Files
ospab.host/ospabhost/frontend/tailwind.config.js
2025-09-16 14:47:30 +03:00

19 lines
396 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'ospab-primary': '#3B82F6', // Голубой
'ospab-accent': '#FF13F0', // Розовый
},
fontFamily: {
mono: ['Share Tech Mono', 'monospace'],
},
},
},
plugins: [],
}