quivr/frontend/app/colors.css
Antoine Dewez 6c600bc680
fix(frontend): onboardind bug (#2414)
# 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-04-09 18:30:05 +02:00

49 lines
937 B
CSS

:root {
/* White */
--white-0: #ffffff;
--white-1: #fafafa;
--white-2: #fcfaf6;
/* Black */
--black-0: #111111;
--black-1: #171717;
--black-2: #1c1c1c;
--black-3: #222222;
--black-4: #272727;
--black-5: #2d2d2d;
--black-6: #323232;
--black-7: #383838;
/* Grey */
--grey-O: #707070;
--grey-1: #c8c8c8;
--grey-2: #cbcbcb;
--grey-3: #e7e9ec;
--grey-4: #d3d3d3;
--grey-5: #f5f5f5;
/* Primary */
--primary-0: #6142d4;
--primary-1: #d0c6f2;
--primary-2: #f5f3fd;
/* Accent */
--accent: #13abba;
/* Gold */
--gold: #b8860b;
--gold-lightest: #f0ebdd;;
/* Error */
--dangerous-dark: #e30c17;
--dangerous: #9b373c;
--dangerous-lightest: #eedddd;
/* Warning */
--warning: #c77d33;
--warning-lightest: #e9d9c9;
/* Success */
--success: #47a455;
--success-lightest: #d0edd4;
}