variables.scss 688 B

1234567891011121314151617181920212223242526272829
  1. // color
  2. // 主色调
  3. $primary-color: #fa2c19 !default;
  4. $primary-color-end: #fa6419 !default;
  5. // 辅助色
  6. $help-color: #f5f5f5 !default;
  7. // 标题常规文字
  8. $title-color: #1a1a1a !default;
  9. // 次内容
  10. $text-color: #808080 !default;
  11. // 特殊禁用色
  12. $disable-color: #cccccc !default;
  13. $white: #fff;
  14. // Font
  15. $font-size-1: 12px;
  16. $font-size-2: 14px;
  17. $font-size-3: 16px;
  18. $font-size-4: 18px;
  19. $font-weight-bold: 400;
  20. // button
  21. $button-border-radius: 25px;
  22. $button-default-bg-color: linear-gradient(135deg, $primary-color 0%, $primary-color-end 100%);
  23. $button-default-height: 48px;
  24. $button-default-line-height: 1.2;
  25. $button-default-font-size: $font-size-3;
  26. $button-default-color: $white;