13 lines
173 B
CSS
13 lines
173 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--bg: #27374d;
|
|
--text-1: #dde6ed;
|
|
}
|
|
|
|
html {
|
|
background-color: var(--bg);
|
|
color: var(--text-1);
|
|
}
|