@import url("https://cdn.apps.lci.ulsa.mx/styles/indivisa.css"); @import "tailwindcss"; @theme { --font-sans: 'indivisa-text'; --font-display: 'indivisa-text-black'; --color-blue-50: #e1e6f8; --color-blue-100: #b3c0ed; --color-blue-200: #8095e3; --color-blue-300: #4d6ad9; --color-blue-400: #2a4acb; --color-blue-500: #001d68; /* Base Blue */ --color-blue-600: #00185c; --color-blue-700: #00134b; --color-blue-800: #000e3a; --color-blue-900: #000a2a; --color-blue-950: oklch(0.10 0.04 259); --color-red-50: #fdecef; --color-red-100: #f9cdd5; --color-red-200: #f4a9b8; --color-red-300: #ef768d; --color-red-400: #ea425f; --color-red-500: #d21034; /* Base Red */ --color-red-600: #b30d2d; --color-red-700: #8e0a23; --color-red-800: #690719; --color-red-900: #45050f; --color-red-950: oklch(0.25 0.16 20); } ::selection { background-color: var(--color-red-500); color: white; /* Asegura buen contraste */ } ::-moz-selection { /* Para compatibilidad con Firefox */ background-color: var(--color-red-500); color: white; } @plugin "tailwindcss-animate"; @custom-variant dark (&:is(.dark *)); :root { --background: hsl(0 0% 100%); --foreground: hsl(0 0% 3.9%); --card: hsl(0 0% 100%); --card-foreground: hsl(0 0% 3.9%); --popover: hsl(0 0% 100%); --popover-foreground: hsl(0 0% 3.9%); --primary: hsl(223, 100%, 20%); --primary-foreground: hsl(0 0% 98%); --secondary: hsl(0 0% 96.1%); --secondary-foreground: hsl(0 0% 9%); --muted: hsl(0 0% 96.1%); --muted-foreground: hsl(0 0% 45.1%); --accent: hsl(0 0% 96.1%); --accent-foreground: hsl(0 0% 9%); --destructive: hsl(349, 86%, 44%); --destructive-foreground: hsl(0 0% 98%); --border: hsl(0 0% 89.8%); --input: hsl(0 0% 89.8%); --ring: hsl(0 0% 3.9%); --chart-1: hsl(12 76% 61%); --chart-2: hsl(173 58% 39%); --chart-3: hsl(197 37% 24%); --chart-4: hsl(43 74% 66%); --chart-5: hsl(27 87% 67%); --radius: 1rem; font-size: calc(100% + 0.5rem); } .dark { --background: hsl(0 0% 3.9%); --foreground: hsl(0 0% 98%); --card: hsl(0 0% 3.9%); --card-foreground: hsl(0 0% 98%); --popover: hsl(0 0% 3.9%); --popover-foreground: hsl(0 0% 98%); --primary: hsl(0 0% 98%); --primary-foreground: hsl(0 0% 9%); --secondary: hsl(0 0% 14.9%); --secondary-foreground: hsl(0 0% 98%); --muted: hsl(0 0% 14.9%); --muted-foreground: hsl(0 0% 63.9%); --accent: hsl(0 0% 14.9%); --accent-foreground: hsl(0 0% 98%); --destructive: hsl(0 62.8% 30.6%); --destructive-foreground: hsl(0 0% 98%); --border: hsl(0 0% 14.9%); --input: hsl(0 0% 14.9%); --ring: hsl(0 0% 83.1%); --chart-1: hsl(223, 100%, 20%); --chart-2: hsl(160 60% 45%); --chart-3: hsl(30 80% 55%); --chart-4: hsl(280 65% 60%); --chart-5: hsl(349, 86%, 44%); } @theme inline { --color-background: var(--background); --color-foreground: var(--foreground); --color-card: var(--card); --color-card-foreground: var(--card-foreground); --color-popover: var(--popover); --color-popover-foreground: var(--popover-foreground); --color-primary: var(--primary); --color-primary-foreground: var(--primary-foreground); --color-secondary: var(--secondary); --color-secondary-foreground: var(--secondary-foreground); --color-muted: var(--muted); --color-muted-foreground: var(--muted-foreground); --color-accent: var(--accent); --color-accent-foreground: var(--accent-foreground); --color-destructive: var(--destructive); --color-destructive-foreground: var(--destructive-foreground); --color-border: var(--border); --color-input: var(--input); --color-ring: var(--ring); --color-chart-1: var(--chart-1); --color-chart-2: var(--chart-2); --color-chart-3: var(--chart-3); --color-chart-4: var(--chart-4); --color-chart-5: var(--chart-5); --radius-sm: calc(var(--radius) - 4px); --radius-md: calc(var(--radius) - 2px); --radius-lg: var(--radius); --radius-xl: calc(var(--radius) + 4px); } #root { background-image: url('/la-salle.png'); /* Replace with your image path */ background-position: bottom right; background-repeat: no-repeat; background-size: contain; /* Adjust based on needs */ } @layer base { * { @apply border-border outline-ring/50; } body { @apply bg-background text-foreground; } }