add frontend and change password

This commit is contained in:
2026-01-09 14:24:21 +03:00
parent 8e0131451d
commit 7a906fa824
44 changed files with 6020 additions and 49 deletions
+30
View File
@@ -0,0 +1,30 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'bg-sand': '#F5F5F1',
'card-white': '#FFFFFF',
'accent-terracotta': '#D27D56',
'accent-olive': '#6B705C',
'text-main': '#2C2C2C',
'text-muted': '#8B8B8B',
'input-bg': '#F9F9F7',
'error-soft': '#C79A8B',
},
fontFamily: {
'lora': ['Lora', 'serif'],
'inter': ['Inter', 'sans-serif'],
},
boxShadow: {
'soft': '0 15px 45px rgba(107, 112, 92, 0.1), 0 0 0 1px rgba(107, 112, 92, 0.05)',
'logo': '0 4px 12px rgba(107, 112, 92, 0.15)',
},
},
},
plugins: [],
}