Spaces:
Sleeping
Sleeping
File size: 728 Bytes
5456422 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | @tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color-scheme: dark;
}
html,
body {
background-color: #0a0a0b;
color: #e4e4e7;
}
body {
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
/* Thin, restrained scrollbars to match the dashboard aesthetic. */
* {
scrollbar-width: thin;
scrollbar-color: #26262b transparent;
}
*::-webkit-scrollbar {
width: 8px;
height: 8px;
}
*::-webkit-scrollbar-thumb {
background: #26262b;
border-radius: 0;
}
/* Subtle pulse used by the loading status line. */
@keyframes softPulse {
0%,
100% {
opacity: 0.45;
}
50% {
opacity: 1;
}
}
.animate-soft-pulse {
animation: softPulse 1.4s ease-in-out infinite;
}
|