Новые правки на сайте

This commit is contained in:
Web-serfer 2026-05-09 22:57:31 +05:00
parent be6ed4afaf
commit 44a7374a44
27 changed files with 859 additions and 0 deletions

17
tailwind.config.mjs Normal file
View file

@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
'toyota-red': '#E51937',
'toyota-red-dark': '#b91c1a',
'lexus-dark': '#1a1a1a',
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
};