light.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. @use './base.scss';
  2. @use '../variable.scss' as light_variable;
  3. [data-vxe-ui-theme="light"] {
  4. /*font color*/
  5. --vxe-ui-font-color: #{light_variable.$vxe-ui-font-color};
  6. --vxe-ui-font-primary-color: #{light_variable.$vxe-ui-font-primary-color};
  7. --vxe-ui-font-lighten-color: #{light_variable.$vxe-ui-font-lighten-color};
  8. --vxe-ui-font-darken-color: #{light_variable.$vxe-ui-font-darken-color};
  9. --vxe-ui-font-disabled-color: #{light_variable.$vxe-ui-font-disabled-color};
  10. /*base*/
  11. --vxe-ui-base-popup-border-color: #{light_variable.$vxe-ui-base-popup-border-color};
  12. --vxe-ui-base-popup-box-shadow: #{light_variable.$vxe-ui-base-popup-box-shadow};
  13. /*layout*/
  14. --vxe-ui-layout-background-color: #{light_variable.$vxe-ui-layout-background-color};
  15. /*input*/
  16. --vxe-ui-input-border-color: #{light_variable.$vxe-ui-input-border-color};
  17. --vxe-ui-input-placeholder-color: #{light_variable.$vxe-ui-input-placeholder-color};
  18. --vxe-ui-input-disabled-background-color: #{light_variable.$vxe-ui-input-disabled-background-color};
  19. /*loading*/
  20. --vxe-ui-loading-background-color: #{light_variable.$vxe-ui-loading-background-color};
  21. /*table*/
  22. --vxe-ui-table-header-background-color: #{light_variable.$vxe-ui-table-header-background-color};
  23. --vxe-ui-table-column-to-row-background-color: #{light_variable.$vxe-ui-table-column-to-row-background-color};
  24. --vxe-ui-table-column-hover-background-color: #{light_variable.$vxe-ui-table-column-hover-background-color};
  25. --vxe-ui-table-column-current-background-color: #{light_variable.$vxe-ui-table-column-current-background-color};
  26. --vxe-ui-table-column-hover-current-background-color: #{light_variable.$vxe-ui-table-column-hover-current-background-color};
  27. --vxe-ui-table-border-color: #{light_variable.$vxe-ui-table-border-color};
  28. --vxe-ui-table-row-hover-background-color: #{light_variable.$vxe-ui-table-row-hover-background-color};
  29. --vxe-ui-table-row-striped-background-color: #{light_variable.$vxe-ui-table-row-striped-background-color};
  30. --vxe-ui-table-row-hover-striped-background-color: #{light_variable.$vxe-ui-table-row-hover-striped-background-color};
  31. --vxe-ui-table-row-radio-checked-background-color: #{light_variable.$vxe-ui-table-row-radio-checked-background-color};
  32. --vxe-ui-table-row-hover-radio-checked-background-color: #{light_variable.$vxe-ui-table-row-hover-radio-checked-background-color};
  33. --vxe-ui-table-row-checkbox-checked-background-color: #{light_variable.$vxe-ui-table-row-checkbox-checked-background-color};
  34. --vxe-ui-table-row-hover-checkbox-checked-background-color: #{light_variable.$vxe-ui-table-row-hover-checkbox-checked-background-color};
  35. --vxe-ui-table-row-current-background-color: #{light_variable.$vxe-ui-table-row-current-background-color};
  36. --vxe-ui-table-row-hover-current-background-color: #{light_variable.$vxe-ui-table-row-hover-current-background-color};
  37. --vxe-ui-table-fixed-scrolling-box-shadow-color: #{light_variable.$vxe-ui-table-fixed-scrolling-box-shadow-color};
  38. --vxe-ui-table-drag-over-background-color:#{light_variable.$vxe-ui-table-drag-over-background-color};
  39. }