variable.less 899 B

123456789101112131415161718192021222324252627282930
  1. @import (reference) '../style/themes/index.less';
  2. @guideTourPrefix: ant-guide-tour;
  3. // 层级-1
  4. @guide-tour-z-index-1: 9999;
  5. // 层级-2
  6. @guide-tour-z-index-2: 10000;
  7. // 层级-3
  8. @guide-tour-z-index-3: 10001;
  9. // 主要文字颜色
  10. @guide-tour-text-color: @COLOR_WHITE_DEFAULT;
  11. // 关闭按钮颜色
  12. @guide-tour-clear-color: @COLOR_TEXT_ASSIST_DEFAULT;
  13. // 按钮距离底部
  14. @guide-tour-button-bottom: calc(100 * @rpx + env(safe-area-inset-bottom));
  15. // 按钮高度
  16. @guide-tour-button-height:52 * @rpx;
  17. // 步骤条点的长宽
  18. @guide-tour-dot-size: 6 * @rpx;
  19. // 步骤条点的颜色
  20. @guide-tour-dot-color: @COLOR_TEXT_ASSIST_DEFAULT;
  21. // 激活步骤条点的长度
  22. @guide-tour-dot-active-width:26 * @rpx;
  23. // 步骤条点的弧度
  24. @guide-tour-dot-border-radius:2 * @rpx;
  25. // 步骤条距离底部
  26. @guide-tour-dot-bottom: calc(
  27. @guide-tour-button-bottom + 40 * @rpx + @guide-tour-button-height
  28. );