Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

34 rindas
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. }