Files
accounting-frontend/tailwind.config.js
2026-07-01 00:29:25 +03:30

30 lines
720 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Vazirmatn', 'Shabnam', 'Inter', 'Segoe UI', 'Tahoma', 'sans-serif'],
},
colors: {
brand: {
50: '#eef4ff',
100: '#d9e6ff',
200: '#bcd2ff',
300: '#8eb4ff',
400: '#598bff',
500: '#3563ff',
600: '#1d40f5',
700: '#162fe1',
800: '#1829b6',
900: '#1a298f',
},
},
boxShadow: {
card: '0 1px 2px 0 rgba(15, 23, 42, 0.04), 0 4px 16px -2px rgba(15, 23, 42, 0.08)',
},
},
},
plugins: [],
}