github.com/KyaXTeam/consul@v1.4.5/ui/styles/_type.scss (about)

     1  body {
     2      -webkit-font-smoothing:antialiased;
     3      font-size: 16px;
     4      color: $text-color;
     5  }
     6  
     7  a {
     8      color: $pink;
     9      font-weight: 600;
    10      @include transition(color .2s ease-in-out);
    11  
    12      &:hover {
    13          text-decoration: none;
    14          color: darken($pink, 10%);
    15      }
    16  
    17      &.subtle {
    18          color: inherit;
    19  
    20          &:hover {
    21              color: $pink;
    22          }
    23      }
    24  }
    25  
    26  code {
    27      color: $pink-dark;
    28      background-color: $gray-background;
    29  }
    30  
    31  .help-block {
    32      font-size: 14px;
    33      color: $gray-light;
    34  }
    35  
    36  small {
    37      color: $gray;
    38  }
    39  
    40  h1, h2, h3, h4, h5 {
    41      color: $gray-darker;
    42  }
    43  
    44  h5 {
    45      text-transform: uppercase;
    46      font-weight: 700;
    47      color: $gray-light;
    48  }
    49  
    50  h4.breadcrumbs {
    51      padding-bottom: 5px;
    52      text-transform: uppercase;
    53      a {
    54          color: $gray-light;
    55      }
    56  }
    57  
    58  pre {
    59      background-color: $gray;
    60      color: white;
    61      font-weight: 700;
    62      font-size: 12px;
    63  }
    64  
    65  .bold {
    66      font-weight: 700;
    67  }
    68  
    69  .light {
    70      color: $gray;
    71  }