No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_functions.scss 658B

123456789101112131415161718192021222324252627282930313233
  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. }