hyp / apps /ui /src /styles /themes /light.css
Leon4gr45's picture
Upload folder using huggingface_hub
1dbc34b verified
/* Light Theme Overrides */
.light .scrollbar-visible::-webkit-scrollbar-track {
background: oklch(0.95 0 0);
}
.light .scrollbar-visible::-webkit-scrollbar-thumb {
background: oklch(0.7 0 0);
}
.light .scrollbar-visible::-webkit-scrollbar-thumb:hover {
background: oklch(0.6 0 0);
}
.light .scrollbar-styled::-webkit-scrollbar-thumb {
background: oklch(0.75 0 0);
}
.light .scrollbar-styled::-webkit-scrollbar-thumb:hover {
background: oklch(0.65 0 0);
}
.light .bg-glass {
background: oklch(1 0 0 / 0.8);
}
.light .bg-glass-80 {
background: oklch(1 0 0 / 0.95);
}
.light .content-bg {
background: linear-gradient(135deg, oklch(0.99 0 0), oklch(0.98 0 0), oklch(0.99 0 0));
}
.light .animated-outline-gradient {
background: conic-gradient(from 90deg at 50% 50%, #7c3aed 0%, #2563eb 50%, #7c3aed 100%);
}
.light .animated-outline-inner {
background: oklch(100% 0 0) !important;
color: #7c3aed !important;
border: 1px solid oklch(92% 0 0);
}
.light [data-slot='button'][class*='animated-outline']:hover .animated-outline-inner {
background: oklch(97% 0.02 270) !important;
color: #5b21b6 !important;
}
.light .slider-track {
background: oklch(90% 0 0);
}
.light .slider-range {
background: linear-gradient(to right, #7c3aed, #2563eb);
}
.light .slider-thumb {
background: oklch(100% 0 0);
border-color: oklch(80% 0 0);
}
.light .xml-highlight {
color: oklch(0.3 0 0); /* Default text */
}
.light .xml-tag-bracket {
color: oklch(0.45 0.15 250); /* Blue-gray for < > */
}
.light .xml-tag-name {
color: oklch(0.45 0.22 25); /* Red/maroon for tag names */
}
.light .xml-attribute-name {
color: oklch(0.45 0.18 280); /* Purple for attributes */
}
.light .xml-attribute-equals {
color: oklch(0.4 0 0); /* Dark gray for = */
}
.light .xml-attribute-value {
color: oklch(0.45 0.18 145); /* Green for string values */
}
.light .xml-comment {
color: oklch(0.55 0.05 100); /* Muted olive for comments */
font-style: italic;
}
.light .xml-cdata {
color: oklch(0.5 0.1 200); /* Teal for CDATA */
}
.light .xml-doctype {
color: oklch(0.5 0.15 280); /* Purple for DOCTYPE */
}
.light .xml-text {
color: oklch(0.25 0 0); /* Near-black for text content */
}