github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/ui/app/styles/components/status-text.scss (about) 1 .status-text { 2 font-weight: $weight-semibold; 3 4 &.node-ready { 5 color: $nomad-green-dark; 6 } 7 8 &.node-down { 9 color: $danger; 10 } 11 12 &.node-initializing { 13 color: $grey; 14 } 15 16 @each $name, $pair in $colors { 17 $color: nth($pair, 1); 18 $color-invert: nth($pair, 2); 19 20 &.is-#{$name} { 21 color: $color; 22 } 23 } 24 }