github.com/outbrain/consul@v1.4.5/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.center-c { 11 fill: $consul-red-dark; 12 opacity: 1.0; 13 } 14 15 path.circles { 16 fill: $consul-red; 17 opacity: 1.0; 18 } 19 20 path.c { 21 fill: $consul-red; 22 opacity: 1.0; 23 } 24 } 25 26 // The default logo class is the colored version 27 @extend .color; 28 29 &.white { 30 opacity: 1.0; 31 32 path.text { 33 fill: $white; 34 } 35 36 path.center-c { 37 fill: $white; 38 opacity: 0.7; 39 } 40 41 path.circles { 42 fill: $white; 43 opacity: 1.0; 44 } 45 46 path.c { 47 fill: $white; 48 opacity: 1.0; 49 } 50 } 51 }