stem-separator / frontend /src /index.css
sourav-das's picture
Upload folder using huggingface_hub
7dfae77 verified
raw
history blame contribute delete
801 Bytes
@import "tailwindcss";
@theme {
--color-bg-primary: #0a0a0f;
--color-bg-secondary: #13131a;
--color-bg-card: #1a1a24;
--color-bg-hover: #252530;
--color-text-primary: #e8e8ef;
--color-text-secondary: #8888a0;
--color-accent: #7c3aed;
--color-accent-hover: #6d28d9;
--color-border: #2a2a38;
}
body {
background-color: var(--color-bg-primary);
color: var(--color-text-primary);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, sans-serif;
margin: 0;
min-height: 100vh;
}
* {
box-sizing: border-box;
}
/* Scrollbar styling */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: var(--color-bg-secondary);
}
::-webkit-scrollbar-thumb {
background: var(--color-border);
border-radius: 3px;
}