Spaces:
Build error
Build error
File size: 1,173 Bytes
f52856e | 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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
@import 'tailwindcss';
@theme {
--color-bg-primary: #0F0F0F;
--color-bg-secondary: #161616;
--color-bg-tertiary: #1E1E1E;
--color-border: #2A2A2A;
--color-orange-primary: #F97316;
--color-orange-muted: #7C3910;
--color-orange-subtle: #1A0E08;
--color-silver-primary: #C0C0C0;
--color-silver-muted: #888888;
--color-silver-subtle: #444444;
--color-white: #F5F5F5;
--font-family-sans: 'Inter', sans-serif;
}
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body {
background-color: #0F0F0F;
color: #888888;
font-family: 'Inter', sans-serif;
font-size: 14px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
a {
text-decoration: none;
transition: color 150ms ease;
}
a:hover {
color: #F5F5F5;
}
::selection {
background: #F97316;
color: #0F0F0F;
}
:focus-visible {
outline: 1px solid #F97316;
outline-offset: 2px;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #0F0F0F;
}
::-webkit-scrollbar-thumb {
background: #2A2A2A;
border-radius: 3px;
}
|