github.com/quite/nomad@v0.8.6/website/source/assets/stylesheets/_variables.scss (about)

     1  // Colors
     2  $white: #FFFFFF;
     3  $black: #000000;
     4  $gray: #555555;
     5  $gray-light: #CCCCCC;
     6  
     7  $consul-pink: #D62783;
     8  $consul-pink-dark: #961D59;
     9  $nomad-green: #25BA81;
    10  $nomad-green-dark:#1F9967;
    11  $packer-blue: #1DAEFF;
    12  $packer-blue-dark: #1D94DD;
    13  $terraform-purple: #5C4EE5;
    14  $terraform-purple-dark: #4040B2;
    15  $vagrant-blue: #1563FF;
    16  $vagrant-blue-dark: #104EB2;
    17  $vault-black: #000000;
    18  $vault-blue: #00ABE0;
    19  $vault-gray: #919FA8;
    20  
    21  // Typography
    22  $font-family-klavika:   'klavika-web', Helvetica, sans-serif;
    23  $font-family-open-sans: 'Open Sans', sans-serif;
    24  $font-family-monospace: 'Fira Mono', monospace;
    25  $font-size:             15px;
    26  $font-weight-reg:       400;
    27  $font-weight-bold:      600;
    28  
    29  // Body
    30  $body-font-color: $gray;
    31  $body-link-color: $nomad-green;
    32  
    33  // Home
    34  $home-header-background-color: transparent;
    35  $home-header-link-color: $gray;
    36  $home-header-link-color-hover: $black;
    37  
    38  // Sidebar
    39  $sidebar-background-color: $white;
    40  $sidebar-font-size: $font-size - 2;
    41  $sidebar-link-color: $body-font-color;
    42  $sidebar-link-color-hover: $black;
    43  $sidebar-link-color-active: $body-link-color;
    44  $sidebar-font-family: $font-family-open-sans;
    45  $sidebar-font-weight: $font-weight-reg;
    46  
    47  // Header
    48  $header-background-color: $nomad-green;
    49  $header-font-size: $font-size - 2;
    50  $header-height: 92px;
    51  $header-link-color: rgba($white, 0.85);
    52  $header-link-color-hover: $white;
    53  
    54  // Footer
    55  $footer-font-size: $font-size - 2;
    56  $footer-link-color: $body-font-color;
    57  $footer-link-color-hover: $black;
    58  
    59  // Button
    60  $button-background: $white;
    61  $button-font-color: #7b8A8E;
    62  $button-font-family: $font-family-klavika;
    63  $button-font-size: $font-size;
    64  $button-font-weight: $font-weight-bold;
    65  $button-primary-background: $nomad-green;
    66  $button-primary-font-color: $white;