Files
ArtSplash/app/globals.css

84 lines
1.4 KiB
CSS

@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
--lime: #c5ff00;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-lime-400: #c5ff00;
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
body {
background: var(--background);
color: var(--foreground);
font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}
/* Custom Animations */
@keyframes marquee {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
}
.animate-marquee {
animation: marquee 60s linear infinite;
width: max-content;
}
.animate-marquee:hover {
animation-play-state: paused;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #c5ff00;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #a8e000;
}
/* Selection color */
::selection {
background-color: #c5ff00;
color: #000000;
}
/* Focus styles */
*:focus-visible {
outline: 2px solid #c5ff00;
outline-offset: 2px;
}
/* Gradient text utility */
.gradient-text {
background: linear-gradient(135deg, #c5ff00 0%, #84cc16 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}