Initial commit: SKEEN Derma Experts - Sistema Integral de Gestión Clínica
- Frontend React (SKEEN Brand) con Vite, TypeScript, Tailwind - Frontend Homenest (versión alternativa) - Módulos Odoo 17 custom (citas, pacientes, monedero, pagos, ventas, inventario, whatsapp) - WACRM fork (Next.js 16 + Supabase) - Hermes + Bridge + Skills (Qwen3.6 via Nan Builders) - Scripts de migración y operación - Documentación extensiva en docs/
This commit is contained in:
47
frontend-homenest/tailwind.config.js
Normal file
47
frontend-homenest/tailwind.config.js
Normal file
@@ -0,0 +1,47 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
homenest: {
|
||||
/* Paleta HomeNest — cálida, aspiracional, hogareña */
|
||||
cream: '#FEF3C7',
|
||||
creamLight: '#FFF9E6',
|
||||
creamDark: '#F3E2B3',
|
||||
brown: '#8B5E3C',
|
||||
brownDark: '#6F4B30',
|
||||
brownLight: '#A87B5D',
|
||||
sage: '#84CC16',
|
||||
sageLight: '#D9F99D',
|
||||
sageDark: '#65A30D',
|
||||
bark: '#3E2C1C',
|
||||
barkMuted: '#7A5C44',
|
||||
barkLight: '#5C4634',
|
||||
sand: '#E9D5B7',
|
||||
sandLight: '#F5EBD8',
|
||||
white: '#FFFFFF',
|
||||
rose: '#EF4444',
|
||||
},
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ['"DM Sans"', 'system-ui', 'sans-serif'],
|
||||
display: ['"Alike"', 'Georgia', 'serif'],
|
||||
heading: ['"Alike"', 'Georgia', 'serif'],
|
||||
mono: ['"JetBrains Mono"', 'monospace'],
|
||||
},
|
||||
borderRadius: {
|
||||
'2xl': '1rem',
|
||||
'3xl': '1.5rem',
|
||||
},
|
||||
boxShadow: {
|
||||
soft: '0 4px 20px -4px rgba(62, 44, 28, 0.08)',
|
||||
card: '0 2px 12px -2px rgba(62, 44, 28, 0.06)',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Reference in New Issue
Block a user