deemix-webui/public/css/modules/base/base.css

48 lines
970 B
CSS

@import './normalize.css';
@import './typography.css';
/* * {
transition: background-color 500ms ease-in-out;
} */
html {
height: 100vh;
--main-background: #ffffff;
--secondary-background: #eeeeee;
--main-text: #333333;
--main-text-inverted: #eeeeee;
--main-scroll: #555;
--panels-background: #222324;
--panels-text: #ffffff;
--panels-scroll: #2a2c2c;
--accent-color: #0a84ff;
--accent-text: #ffffff;
--tag-background: #0062c4;
--tag-text: #ffffff;
--toast-background: #000000dd;
--toast-secondary: #ffffff22;
--toast-text: #ffffffde;
--separator: #8f8f8f;
}
html[data-theme='dark'] {
--main-background: #141414;
--secondary-background: #242424;
--main-text: #eeeeee;
--main-text-inverted: #333333;
--panels-background: #1a1a1a;
--panels-text: #ffffff;
--accent-text: #2e2e2e;
}
body {
margin: 0px;
width: 100%;
height: 100%;
font-family: 'Open Sans';
overflow: hidden;
background: var(--main-background);
color: var(--main-text);
}