RoadRentals/tailwind.config.js
2026-03-30 17:24:23 +05:30

41 lines
905 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: '#eff3fe',
100: '#d7dffc',
200: '#b0bff9',
500: '#6b8df5',
600: '#4B70F7',
700: '#3a5cd4',
},
dark: {
700: '#1f2937',
800: '#1a1a2e',
900: '#111827',
},
badge: {
bg: '#F3F4F6',
text: '#6B7280',
},
section: {
bg: '#F8FAFC',
},
},
fontFamily: {
figtree: ['Figtree', 'sans-serif'],
},
boxShadow: {
card: '0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05)',
'card-hover': '0 4px 16px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08)',
},
},
},
plugins: [],
}