Files
assetx/app/globals.css

54 lines
683 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #f9fafb;
--foreground: #111827;
--font-inter: 'Inter', sans-serif;
--font-jetbrains: 'JetBrains Mono', monospace;
}
.dark {
--background: #111827;
--foreground: #f9fafb;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: var(--font-inter);
-webkit-font-smoothing: antialiased;
color: var(--foreground);
background: var(--background);
}
a,
button,
input,
select,
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0;
border: none;
text-decoration: none;
background: none;
}
menu,
ol,
ul {
list-style-type: none;
margin: 0;
padding: 0;
}