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

34 行
658 B

  1. //
  2. // Functions
  3. //
  4. // Bootstrap default functions
  5. @import "../bootstrap/functions";
  6. // Retrieve color Sass maps
  7. @function section-color($key: "primary") {
  8. @return map-get($section-colors, $key);
  9. }
  10. // Lines colors
  11. @function shapes-primary-color($key: "step-1-gradient-bg") {
  12. @return map-get($shapes-primary-colors, $key);
  13. }
  14. @function shapes-default-color($key: "step-1-gradient-bg") {
  15. @return map-get($shapes-default-colors, $key);
  16. }
  17. @function lines-light-color($key: "step-1-gradient-bg") {
  18. @return map-get($shapes-light-colors, $key);
  19. }
  20. @function shapes-dark-color($key: "step-1-gradient-bg") {
  21. @return map-get($shapes-dark-colors, $key);
  22. }