github.com/manicqin/nomad@v0.9.5/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  }