variables.scss 864 B

123456789101112131415161718192021222324252627282930
  1. $color-main-text: #000000;
  2. $color-main-background: #ffffff;
  3. $color-primary: #0082c9;
  4. $color-primary-text: #ffffff;
  5. $color-error: #e9322d;
  6. $color-warning: #eca700;
  7. $color-success: #46ba61;
  8. $color-primary-element: $color-primary;
  9. // rgb(118, 118, 118) / #767676
  10. // min. color contrast for normal text on white background according to WCAG AA
  11. // (Works as well: color: #000; opacity: 0.57;)
  12. $color-text-details: #767676;
  13. @function nc-darken($color, $value) {
  14. @return darken($color, $value);
  15. }
  16. @function nc-lighten($color, $value) {
  17. @return lighten($color, $value);
  18. }
  19. $image-logo: '../img/logo.svg?v=1';
  20. $image-login-background: '../img/background.png?v=2';
  21. $color-loading: #969696;
  22. $color-loading-dark: #bbbbbb;
  23. $color-box-shadow: rgba(nc-darken($color-main-background, 70%), 0.75);
  24. $color-border: nc-darken($color-main-background, 8%);
  25. $border-radius: 3px;