42 lines
559 B
SCSS
42 lines
559 B
SCSS
svg.logo {
|
|
&.color {
|
|
opacity: 1.0;
|
|
|
|
path.text {
|
|
fill: $black;
|
|
opacity: 1.0;
|
|
}
|
|
|
|
path.rect-light {
|
|
fill: $terraform-purple;
|
|
opacity: 1.0;
|
|
}
|
|
|
|
path.rect-dark {
|
|
fill: $terraform-purple-dark;
|
|
opacity: 1.0;
|
|
}
|
|
}
|
|
|
|
// The default logo class is the colored version
|
|
@extend .color;
|
|
|
|
&.white {
|
|
opacity: 1.0;
|
|
|
|
path.text {
|
|
fill: $white;
|
|
}
|
|
|
|
path.rect-light {
|
|
fill: $white;
|
|
opacity: 1.0;
|
|
}
|
|
|
|
path.rect-dark {
|
|
fill: $white;
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
}
|