cosmos-explorer/src/style.css
2023-05-05 08:37:12 +08:00

18 lines
272 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--text-main: #333;
--text-secondary: #4b525d;
--bg-active: #fbfbfc;
}
html.dark {
--text-main: #f7f7f7;
--text-secondary: #6f6e84;
--bg-active: #242b40;
}
}