github.com/ratanraj/packer@v1.3.2/website/source/assets/stylesheets/_logos.scss (about)

     1  svg.logo {
     2    &.color {
     3      opacity: 1.0;
     4  
     5      path.text {
     6        fill: $black;
     7        opacity: 1.0;
     8      }
     9  
    10      path.p-front {
    11        fill: $packer-blue;
    12        opacity: 1.0;
    13      }
    14  
    15      path.p-back {
    16        fill: $packer-blue-dark;
    17        opacity: 1.0;
    18      }
    19    }
    20  
    21    // The default logo class is the colored version
    22    @extend .color;
    23  
    24    &.white {
    25      opacity: 1.0;
    26  
    27      path.text {
    28        fill: $white;
    29      }
    30  
    31      path.p-front, path.p-back {
    32        fill: $white;
    33      }
    34  
    35      path.p-back {
    36        opacity: 0.7;
    37      }
    38    }
    39  }