advogados01/Template-01/src/index.css
2026-05-15 14:18:07 +00:00

37 lines
864 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');
@import "tailwindcss";
@plugin "@tailwindcss/typography";
@theme {
--font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
--font-serif: "Playfair Display", ui-serif, Georgia, serif;
--color-brand-blue: #0A192F;
--color-brand-blue-light: #112240;
--color-brand-gold: #D4AF37;
--color-brand-gold-hover: #C5A030;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-sans);
background-color: #FAFAFA;
}
/* Modern clean scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #0A192F;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #D4AF37;
}