您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

37 行
1.4 KiB

  1. $gray-lighter: rgba($black, 0.12) !default;
  2. $gray-light: #999 !default;
  3. $gray-alpha: 0.54 !default;
  4. $gray: #555 !default; // spec color
  5. $gray-dark: rgba(
  6. $black,
  7. 0.87
  8. ) !default; // used for text color - others use grey-600 which is considerably lighter
  9. $bmd-font-weight-base: 400;
  10. // wondering if any of these could still be refactored out, but are definitely in use.
  11. $bmd-inverse: rgba($white, 1) !default;
  12. $bmd-inverse-light: rgba($white, 0.84) !default;
  13. $bmd-inverse-lighter: rgba($white, 0.54) !default;
  14. $bmd-label-color: $gray-color !default;
  15. $bmd-label-color-inner-focus: $gray !default; // e.g. radio label or text-muted not a control-label which is primary
  16. $border-radius-base: 3px !default;
  17. $border-radius-small: 2px !default;
  18. $border-radius-large: 6px !default;
  19. $border-radius-huge: 10px !default;
  20. $border-radius-label: 12px !default;
  21. $border-radius-extreme: 30px !default;
  22. // Typography elements
  23. $mdb-font-family: "Roboto", "Helvetica", "Arial", sans-serif !default;
  24. $mdb-text-color-light: $white !default;
  25. $mdb-text-color-light-hex: $white !default; // for contrast function in inverse
  26. $mdb-text-color-primary: unquote("rgba(#{$rgb-black}, 0.87)") !default;
  27. $mdb-text-color-primary-hex: $black !default; // for contrast function in inverse
  28. $icon-color: rgba(0, 0, 0, 0.5) !default;
  29. $mdb-label-color: unquote("rgba(#{$rgb-black}, 0.26)") !default;
  30. $mdb-label-color-toggle-focus: unquote("rgba(#{$rgb-black}, .54)") !default;