32 lines
516 B
CSS
32 lines
516 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--deep-green: #0a1f1a;
|
|
--surface-green: #112920;
|
|
--gold: #c4a265;
|
|
--teal: #0082a7;
|
|
}
|
|
|
|
html, body {
|
|
background-color: #0a1f1a;
|
|
color: #e8e0d0;
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
margin: 0;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: #0a1f1a;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #1e4a3c;
|
|
border-radius: 4px;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #0082a7;
|
|
}
|