Spaces:
Sleeping
Sleeping
File size: 455 Bytes
9e95f47 | 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 | @tailwind base;
@tailwind components;
@tailwind utilities;
body {
background-color: #0b0c0e;
color: #cfd3d8;
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #0b0c0e;
}
::-webkit-scrollbar-thumb {
background: #2a2d33;
border-radius: 4px;
}
.glass-panel {
@apply bg-obsidian-panel/60 backdrop-blur-md border border-obsidian-border/50 shadow-xl;
}
.pixelated {
image-rendering: pixelated;
}
|