github.com/hernad/nomad@v1.6.112/ui/app/styles/components/status-text.scss (about)

     1  /**
     2   * Copyright (c) HashiCorp, Inc.
     3   * SPDX-License-Identifier: MPL-2.0
     4   */
     5  
     6  .status-text {
     7    font-weight: $weight-semibold;
     8  
     9    &.node-ready {
    10      color: $nomad-green-dark;
    11    }
    12  
    13    &.node-disconnected {
    14      color: $yellow;
    15    }
    16  
    17    &.node-down {
    18      color: $danger;
    19    }
    20  
    21    &.node-initializing {
    22      color: $grey;
    23    }
    24  
    25    @each $name, $pair in $colors {
    26      $color: nth($pair, 1);
    27      $color-invert: nth($pair, 2);
    28  
    29      &.is-#{$name} {
    30        color: $color;
    31      }
    32    }
    33  }