17 lines
458 B
CSS
17 lines
458 B
CSS
|
|
@import "tailwindcss";
|
||
|
|
|
||
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
||
|
|
|
||
|
|
@theme {
|
||
|
|
--font-sans: 'Inter', sans-serif;
|
||
|
|
--color-primary-50: #f0f9ff;
|
||
|
|
--color-primary-100: #e0f2fe;
|
||
|
|
--color-primary-500: #0ea5e9;
|
||
|
|
--color-primary-600: #0284c7;
|
||
|
|
--color-primary-900: #0c4a6e;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
/* En v4 @apply funciona, pero requiere que el import esté arriba */
|
||
|
|
@apply bg-gray-50 text-gray-900 font-sans;
|
||
|
|
}
|