open-nomad/website/source/assets/stylesheets/_logos.scss
2019-10-30 16:17:54 -06:00

63 lines
780 B
SCSS

svg.logo {
&.color {
opacity: 1.0;
path.top {
fill: #25BA81;
opacity: 1.0;
}
path.left {
fill: #25BA81;
opacity: 1.0;
}
path.right {
fill: #1F9967;
opacity: 1.0;
}
path.n {
fill: $white;
opacity: 1.0;
}
path.text {
fill: $black;
opacity: 1.0;
}
}
// The default logo class is the colored version
@extend .color;
&.white {
opacity: 1.0;
path.top {
fill: $white;
opacity: 1.0;
}
path.left {
fill: $white;
opacity: 1.0;
}
path.right {
fill: $white;
opacity: 0.6;
}
path.n {
fill: #25BA81;
opacity: 1.0;
}
path.text {
fill: $white;
opacity: 1.0;
}
}
}