quivr/frontend/styles/_Colors.module.scss
Antoine Dewez d7d1a0155b
feat(frontend): dark mode (#2369)
# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
2024-03-21 00:01:21 -07:00

42 lines
628 B
SCSS

// WHITE
$white: #ffffff;
$highlight: #fafafa;
$ivory: #fcfaf6;
// PRIMARY
$primary: #6142d4;
$primary-light: #d0c6f2;
$primary-lightest: #f5f3fd;
//ACCENT
$accent: #13abba;
// BLACK
$dark-black: #081621;
$black: #11243e;
$light-black: #293a51;
$lightest-black: #e7e9ec;
// GREY
$lightest-grey: #f5f5f5;
$lighter-grey: #d3d3d3;
$light-grey: #cbcbcb;
$normal-grey: #c8c8c8;
$dark-grey: #707070;
// GOLD
$gold: #b8860b;
// ERROR
$dangerous-dark: #e30c17;
$dangerous: #9b373c;
$dangerous-lightest: #eedddd;
// WARNING
$warning: #c77d33;
$warning-lightest: #e9d9c9;
// SUCCESS
$success: #47a455;
$success-lightest: #d0edd4;