main.scss 681 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. Theme: Light Red
  3. */
  4. body {
  5. --esri-calcite-theme-name: "light-red";
  6. }
  7. @import "../base/colors/scss/variables.scss";
  8. // ↳ https://github.com/Esri/calcite-colors.git
  9. $font-color: $Calcite_Gray_700;
  10. $background-color: $Calcite_Red_150;
  11. $interactive-font-color: $Calcite_Gray_700;
  12. $interactive-font-color--hover: $Calcite_Gray_700;
  13. $button-color: $Calcite_Red_200;
  14. $button-color--inverse: #000;
  15. $button-color--bright: #fff;
  16. // Inverse
  17. $interactive-font-color--inverse: darken($font-color, 12%);
  18. $background-color--inverse: $Calcite_Red_200;
  19. // Selected
  20. $border-color--active: $interactive-font-color;
  21. $background-color--active: $Calcite_Red_100;
  22. @import "../base/core";