geosphere-maps/app/globals.css
2023-09-22 11:33:13 +02:00

28 lines
448 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@import '@arcgis/core/assets/esri/themes/light/main.css';
:root {
--foreground-rgb: 0, 0, 0;
--background-rgb: 255, 255, 255;
}
@media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 255, 255, 255;
--background-rgb: 0, 0, 0;
}
}
html,
body {
color: rgb(var(--foreground-rgb));
background: rgb(var(--background-end-rgb));
}
* {
box-sizing: border-box;
}