github.com/anuvu/nomad@v0.8.7-atom1/website/source/assets/stylesheets/_logos.scss (about) 1 svg.logo { 2 &.color { 3 opacity: 1.0; 4 5 path.top { 6 fill: $nomad-green; 7 opacity: 1.0; 8 } 9 10 path.left { 11 fill: $nomad-green; 12 opacity: 1.0; 13 } 14 15 path.right { 16 fill: $nomad-green-dark; 17 opacity: 1.0; 18 } 19 20 path.n { 21 fill: $white; 22 opacity: 1.0; 23 } 24 25 path.text { 26 fill: $black; 27 opacity: 1.0; 28 } 29 } 30 31 // The default logo class is the colored version 32 @extend .color; 33 34 &.white { 35 opacity: 1.0; 36 37 path.top { 38 fill: $white; 39 opacity: 1.0; 40 } 41 42 path.left { 43 fill: $white; 44 opacity: 1.0; 45 } 46 47 path.right { 48 fill: $white; 49 opacity: 0.6; 50 } 51 52 path.n { 53 fill: $nomad-green; 54 opacity: 1.0; 55 } 56 57 path.text { 58 fill: $white; 59 opacity: 1.0; 60 } 61 } 62 }