No Description

_functions.scss 568B

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