This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$journey: (states: complete in-progress current, packets: (strengths: blue, others: green, networking: pink, approach: yellow, coworker: purple)) | |
@function journey-image($state, $packet-color) | |
@if $state == complete | |
@return url('/assets/journey/#{$packet-color}-gem.png') | |
@else | |
@return url('/assets/journey/#{$packet-color}-gem-outline.png') | |
@each $packet, $packet-color in map-get($journey, packets) | |
@each $state in map-get($journey, states) |