website/app/globals.css

46 lines
669 B
CSS

@import "tailwindcss";
:root {
--bg: #0a0a0a;
--bg2: #111111;
--bg3: #181818;
--border: #222222;
--fg: #ffffff;
--fg2: #888888;
--fg3: #3a3a3a;
--green: #4ade80;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
background-color: #0a0a0a;
color: #ffffff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
::selection {
background: rgba(255, 255, 255, 0.15);
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
background: #222222;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #3a3a3a;
}