feat: API и веб-интерфейс — поиск, сравнение цен, экран верификации, загрузка архива

This commit is contained in:
2026-06-26 22:40:00 +05:00
parent e03e70535e
commit 969d958ec3
5 changed files with 711 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
// Дизайн-токены (фирменная палитра) — вставить в tailwind.config.ts → theme.extend
export const brandTheme = {
colors: {
brand: { DEFAULT: "#ff4713", soft: "#ffede7", dark: "#e63e0f" }, // бренд-оранжевый
"t-gray": "#6b788e", // сине-серый (вторичный)
"light-gray": "#f5f7f9", // фон секций/карточек
link: "#2563eb",
success: { DEFAULT: "#0f973d", soft: "#e7f6ec" },
error: { DEFAULT: "#dc2626", soft: "#fbe9e9" },
ink: "#111827", // основной текст
},
fontFamily: {
sans: ["Geologica", "ui-sans-serif", "system-ui", "sans-serif"],
},
borderRadius: { lg: "0.5rem", xl: "0.75rem", "2xl": "1rem", "3xl": "1.5rem" },
maxWidth: { container: "80rem" }, // 1280px — контейнер
boxShadow: { card: "0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1)" },
};