Files
hoppscotch/assets/css/themes.scss
2019-08-31 22:29:32 +05:30

39 lines
612 B
SCSS

/**
Main Themes:
- dark (default)
- light
*/
// Dark is the default theme variant.
:root {
--bg-dark-color: #000000;
// Background color
--bg-color: #121212;
// Text color
--fg-color: #FFF;
// Error color
--err-color: #393939;
// Active color
--ac-color: #51FF0D;
// Active text color
--act-color: #121212;
}
:root.light {
--bg-dark-color: #ffffff;
// Background color
--bg-color: #F6F8FA;
// Text color
--fg-color: #121212;
// Error color
--err-color: invert(#393939, 1);
// Active color
--ac-color: #51FF0D;
// Active text color
--act-color: #121212;
}