38 lines
728 B
CSS
38 lines
728 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
/* Tambahan untuk font */
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
|
|
|
|
/* Custom Theme Overrides */
|
|
:root {
|
|
--color-brand-dark: #0D1117;
|
|
--color-brand-card: #161B22;
|
|
--color-brand-accent: #10B981;
|
|
--color-brand-accent-hover: #059669;
|
|
--color-brand-subtle: #30363D;
|
|
}
|
|
|
|
body {
|
|
@apply bg-[var(--color-brand-dark)] text-gray-300 font-sans antialiased;
|
|
}
|
|
|
|
/* Font override for Inter */
|
|
* {
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
@keyframes marquee {
|
|
0% {
|
|
transform: translateX(0%);
|
|
}
|
|
100% {
|
|
transform: translateX(-50%);
|
|
}
|
|
}
|
|
|
|
.animate-marquee {
|
|
animation: marquee 40s linear infinite;
|
|
}
|