Skip to content

Instantly share code, notes, and snippets.

@elrumordelaluz
Last active August 29, 2015 14:14
Show Gist options
  • Save elrumordelaluz/36f6454be43ac81f9099 to your computer and use it in GitHub Desktop.
Save elrumordelaluz/36f6454be43ac81f9099 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.11)
// Compass (v1.0.3)
// ----
$main-color: #2a333c;
$red:#c05b5b;
$green:#3D969A;
$light-grey:#b7b7b7;
$white:white;
$colors:
"red" $red,
"green" $green,
"white" $white,
"light-grey" $light-grey,
"portage" #74aae8,
"apricot" #ee8675,
"trendypink" #8d5a97,
"turquoiseblue" #59eecc,
"montecarlo" #7dcac2,
"chenin" #e1cd76,
"mediumpurple" #6e71df,
"dark" $main-color
// add some color here:
// Remember to add first a String as a name and second the color like:
// "blue" #009
// or
// "blue" $blue // where the $blue variable would be declared first
;
// Do not edit the code below
// ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
// Replicate the $colors list adding a prefix for buttons
$color-list:();
@for $i from 1 through length($colors) {
$color-list: append($color-list, '.btn-' + nth(nth($colors,$i),1) );
}
// nth Mixin
@mixin nth($list, $selector: ':not') {
@if type-of($list) != list {
@warn "Invalid number for `nth`.";
}
@else {
$generated-selector: '';
@for $i from 1 to length($list) {
$generated-selector: #{$generated-selector + $selector + "(" + nth($list, $i) + ")" };
}
&#{$generated-selector} {
@content;
}
}
}
// coloring Mixin
@mixin coloring($list, $prefix:'', $parent:true){
@each $color in $list {
@if not $parent {
@at-root {
.#{$prefix}#{nth($color,1)} {
$color : nth($color,2) !global;
$name-color : nth($color,1) !global;
@content;
}
}
} @else {
&.#{$prefix}#{nth($color,1)} {
$color : nth($color,2) !global;
$name-color : nth($color,1) !global;
@content;
}
}
} // @each
} // @mixin
// Functions for alt-color
@function color-diff($a, $b) {
$sat: saturation($a) - saturation($b);
$lig: lightness($a) - lightness($b);
$fn-sat: if($sat > 0, 'desaturate', 'saturate');
$fn-lig: if($lig > 0, 'darken', 'lighten');
@return (
adjust-hue: -(hue($a) - hue($b)),
#{$fn-sat}: abs($sat),
#{$fn-lig}: abs($lig)
);
}
@function palette-diff($palette) {
$base: map-get($palette, base);
$colors: map-get($palette, colors);
$diffs: ();
@each $color in $colors {
$diffs: append($diffs, color-diff($base, $color));
}
@return $diffs;
}
$base-palette: (
base: #c05b5b,
colors: #edc1b7
) !default;
$palette-diffs: palette-diff($base-palette);
@function apply-diff($color, $diff) {
@each $key, $value in $diff {
$color: call($key, $color, $value);
}
@return $color;
}
@function alt-color($base-color) {
$colors: ();
@each $diff in $palette-diffs {
$colors: append($colors, apply-diff($base-color, $diff));
}
@return $colors;
}
/*
**
** Sections Stuff
**
*/
.section {
// Generate section-color for each color in $list
@include coloring($colors, 'section-', false) {
@if($name-color == "dark"){
color:$light-grey;
} @else {
color:$main-color;
}
background-color: $color;
.widget-featured .indie-content {
background-color: $main-color;
color:$color;
}
.widget-featured .btn-indie, .btn-indie.inverse {
background-color: $color;
color:$main-color;
&:hover { background-color: darken($color, 2); }
}
.btn-indie {
@include nth($color-list){
background-color: $main-color;
color:$color;
&:hover { background-color: darken($main-color, 2); }
}
}
.indie-header-img, .indie-header-icon {
background-color: $color;
}
.indie-title::after { color:$main-color; }
.separator {
&.card {
color:$color;
border:2px solid $color;
}
}
.indie-label {
color:$main-color;
&.inverse {
background-color: $main-color;
color:$color;
}
&.alt-color {
border:none;
color:$main-color;
background-color: alt-color($color);
}
}
.highlighted {
background-color: $main-color;
color:$color;
&.alt-color {
background-color: alt-color($color);
}
}
.indie-combo { border-color:alt-color($color); }
.indie-tag { background-color:alt-color($color); }
.indie-combo-img {
background-color: $color;
&.img:after {
background-color: $color;
}
}
.indie-img-cont {
h4 { background-color: $color; }
&.img:after {
background-color: $color;
}
}
.indie-featured-img { background-color: $color; }
.indie-featured {
&.hoverable:hover {
h4, p { color:$main-color; }
.btn-rounded { background-color: $main-color; }
}
}
.indie-txt-cont::after, .indie-h::after { background-color: $main-color; } // Specific for :after with currentColor in Safari
.btn-rounded {
background-color: $main-color;
color:$color;
&:hover, &:focus { color: darken($color,5); }
}
// Syntax Highlighter
:not(pre) > code[class*="language-"], pre[class*="language-"] { color: $color; }
} // @include
} // .section
/*
**
** Indie Colors
**
*/
// $colors is a list declared in modules/_variables.scss
@each $color in $colors {
.indie-#{nth($color,1)} {
.section & .widget-featured {
.indie-content {
background-color: #{nth($color,2)};
}
.btn-indie {
background-color: $main-color;
color:#{nth($color,2)};
}
}
// if modify the section element
&.section {
.widget-featured {
.indie-content {
@if(nth($color,1) == "dark"){
background-color: $light-grey;
} @else {
background-color: #{nth($color,2)};
}
// background-color: #{nth($color,2)};
}
.btn-indie {
background-color: $main-color;
color:#{nth($color,2)};
}
}
}
// if modify the widget element
&.indie-widget {
&.widget-featured {
.indie-content {
background-color: #{nth($color,2)};
}
.btn-indie {
background-color: $main-color;
color:#{nth($color,2)};
}
}
:not(pre) > code[class*="language-"], pre[class*="language-"] { color: #{nth($color,2)}; }
code { color: #{nth($color,2)}; }
}
@if(nth($color,1) == "dark"){
color:$light-grey;
} @else {
color:#{nth($color,2)};
}
// & { color:#{nth($color,2)};}
.btn-indie {
@include nth($color-list){
background-color: nth($color,2);
&:hover { background-color: darken(nth($color,2), 2); }
}
.widget-featured &, &.inverse {
@include nth($color-list){
color:#{nth($color,2)};
background-color: $main-color;
}
&:hover { background-color: darken($main-color, 2); }
}
} // .btn-indie
.indie-navigation {
a { color:#{nth($color,2)}; }
& > li:hover > a,
& > li.active > a,
& > li.active > a:hover,
& > li.active > a:focus {
color:#{nth($color,2)};
border:2px solid #{nth($color,2)};
}
& > li > a:focus {
color:#{nth($color,2)};
}
} // .indie-navigation
.section {
&[class*="section-"] {
background-color: #{nth($color,2)};
color:$main-color;
.indie-widget {
border-color:$main-color;
}
.indie-header {
border-bottom-color:currentColor;
}
.indie-title:after {
background-color: currentColor;
}
.indie-header-img {
background-color: #{nth($color,2)};
}
.indie-svg {
color:$main-color;
}
.btn-indie {
background-color: $main-color;
color:#{nth($color,2)};
}
.widget-featured {
.indie-content {
color: #{nth($color,2)};
}
.btn-indie {
background-color: #{nth($color,2)};
color:$main-color;
}
}
:not(pre) > code[class*="language-"], pre[class*="language-"] { color: #{nth($color,2)}; }
code { color: #{nth($color,2)}; }
}
&:not([class*="section-"]) {
.widget-featured {
.indie-content {
background-color: #{nth($color,2)};
}
.btn-indie {
background-color: $main-color;
color:#{nth($color,2)};
}
}
}
}
.indie-venue {
.indie-bg { background-color: nth($color,2); }
}
blockquote {
footer {
color:#{nth($color,2)};
&::before {
background-color: #{nth($color,2)};
}
}
}
.separator {
&.card {
// color:#{nth($color,2)};
@if(nth($color,1) == "dark"){
color:$light-grey;
} @else {
color:#{nth($color,2)};
}
border:2px solid;
}
}
.indie-header {
border-bottom: 2px solid #{nth($color,2)};
}
.indie-widget {
border:2px solid; // #{nth($color,2)};
}
.indie-controls {
button {
border-left-color:#{nth($color,2)};
}
path {
stroke:#{nth($color,2)};
}
}
.indie-title {
&::after {
background-color: #{nth($color,2)};
}
}
.indie-event-img {
background-color: #{nth($color,2)};
}
.indie-featured-img {
background-color: #{nth($color,2)};
}
.indie-featured {
&:not(:nth-of-type(3n))::after {
background-color: #{nth($color,2)};
}
h4 {
color:#{nth($color,2)};
}
&.hoverable:hover {
h4, p { color:alt-color(nth($color,2)); }
.btn-rounded { background-color: alt-color(nth($color,2)); }
}
}
.indie-txt-cont::after, .indie-h::after { background-color: nth($color,2); } // Specific for :after with currentColor in Safari
.btn-rounded {
background-color: #{nth($color,2)};
}
.indie-label {
@if(nth($color,1) == "dark"){
color:$light-grey;
}
&.inverse {
background-color: #{nth($color,2)};
// color:$main-color;
@if(nth($color,1) == "dark"){
background-color:$light-grey;
color:$main-color;
}
}
&.alt-color {
border:none;
color:$main-color;
background-color: alt-color(nth($color,2));
}
}
.indie-svg {
// color:#{nth($color,2)};
@if(nth($color,1) == "dark"){
color:$light-grey;
} @else {
color:#{nth($color,2)};
}
}
.lines {
background-color: #{nth($color,2)};
&::after, &::before { background-color: #{nth($color,2)}; }
}
.highlighted {
// background-color: #{nth($color,2)};
@if(nth($color,1) == "dark"){
background-color:$light-grey;
} @else {
background-color:#{nth($color,2)};
}
&.alt-color {
background-color: alt-color(nth($color,2));
color: $main-color!important;
}
}
.indie-combo { border-color:alt-color(nth($color,2)); }
.indie-tag { background-color:alt-color(nth($color,2)); }
}
}
/*
**
** Generic components Colors
**
*/
@include coloring($colors, 'color-', false) {
color: $color;
&.indie-h:after { background-color: $color!important; }
}
.highlighted {
@include coloring($colors, 'alt-color-', true) {
background-color: alt-color($color);
color: $main-color!important;
}
}
.indie-label {
&.inverse {
@include coloring($colors, 'color-', true) {
background-color: $color;
}
}
@include coloring($colors, 'alt-color-', true) {
border:none;
background-color: alt-color($color);
color: $main-color!important;
}
}
.btn-indie {
@include coloring($colors, 'btn-', false) {
background-color: $color;
color:$main-color;
&:hover { background-color: darken($color, 2); }
.widget-featured &, &.inverse {
background-color: $main-color;
color:$color;
border:2px solid;
&:hover { background-color: darken($main-color, 2) }
}
}
}
/*
**
** Sections Stuff
**
*/
.section-red {
color: #2a333c;
background-color: #c05b5b;
}
.section-red .widget-featured .indie-content {
background-color: #2a333c;
color: #c05b5b;
}
.section-red .widget-featured .btn-indie, .section-red .btn-indie.inverse {
background-color: #c05b5b;
color: #2a333c;
}
.section-red .widget-featured .btn-indie:hover, .section-red .btn-indie.inverse:hover {
background-color: #bd5454;
}
.section-red .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #2a333c;
color: #c05b5b;
}
.section-red .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #262e36;
}
.section-red .indie-header-img, .section-red .indie-header-icon {
background-color: #c05b5b;
}
.section-red .indie-title::after {
color: #2a333c;
}
.section-red .separator.card {
color: #c05b5b;
border: 2px solid #c05b5b;
}
.section-red .indie-label {
color: #2a333c;
}
.section-red .indie-label.inverse {
background-color: #2a333c;
color: #c05b5b;
}
.section-red .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #edc1b7;
}
.section-red .highlighted {
background-color: #2a333c;
color: #c05b5b;
}
.section-red .highlighted.alt-color {
background-color: #edc1b7;
}
.section-red .indie-combo {
border-color: #edc1b7;
}
.section-red .indie-tag {
background-color: #edc1b7;
}
.section-red .indie-combo-img {
background-color: #c05b5b;
}
.section-red .indie-combo-img.img:after {
background-color: #c05b5b;
}
.section-red .indie-img-cont h4 {
background-color: #c05b5b;
}
.section-red .indie-img-cont.img:after {
background-color: #c05b5b;
}
.section-red .indie-featured-img {
background-color: #c05b5b;
}
.section-red .indie-featured.hoverable:hover h4, .section-red .indie-featured.hoverable:hover p {
color: #2a333c;
}
.section-red .indie-featured.hoverable:hover .btn-rounded {
background-color: #2a333c;
}
.section-red .indie-txt-cont::after, .section-red .indie-h::after {
background-color: #2a333c;
}
.section-red .btn-rounded {
background-color: #2a333c;
color: #c05b5b;
}
.section-red .btn-rounded:hover, .section-red .btn-rounded:focus {
color: #b94949;
}
.section-red :not(pre) > code[class*="language-"], .section-red pre[class*="language-"] {
color: #c05b5b;
}
.section-green {
color: #2a333c;
background-color: #3D969A;
}
.section-green .widget-featured .indie-content {
background-color: #2a333c;
color: #3D969A;
}
.section-green .widget-featured .btn-indie, .section-green .btn-indie.inverse {
background-color: #3D969A;
color: #2a333c;
}
.section-green .widget-featured .btn-indie:hover, .section-green .btn-indie.inverse:hover {
background-color: #3a8f93;
}
.section-green .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #2a333c;
color: #3D969A;
}
.section-green .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #262e36;
}
.section-green .indie-header-img, .section-green .indie-header-icon {
background-color: #3D969A;
}
.section-green .indie-title::after {
color: #2a333c;
}
.section-green .separator.card {
color: #3D969A;
border: 2px solid #3D969A;
}
.section-green .indie-label {
color: #2a333c;
}
.section-green .indie-label.inverse {
background-color: #2a333c;
color: #3D969A;
}
.section-green .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #82c9de;
}
.section-green .highlighted {
background-color: #2a333c;
color: #3D969A;
}
.section-green .highlighted.alt-color {
background-color: #82c9de;
}
.section-green .indie-combo {
border-color: #82c9de;
}
.section-green .indie-tag {
background-color: #82c9de;
}
.section-green .indie-combo-img {
background-color: #3D969A;
}
.section-green .indie-combo-img.img:after {
background-color: #3D969A;
}
.section-green .indie-img-cont h4 {
background-color: #3D969A;
}
.section-green .indie-img-cont.img:after {
background-color: #3D969A;
}
.section-green .indie-featured-img {
background-color: #3D969A;
}
.section-green .indie-featured.hoverable:hover h4, .section-green .indie-featured.hoverable:hover p {
color: #2a333c;
}
.section-green .indie-featured.hoverable:hover .btn-rounded {
background-color: #2a333c;
}
.section-green .indie-txt-cont::after, .section-green .indie-h::after {
background-color: #2a333c;
}
.section-green .btn-rounded {
background-color: #2a333c;
color: #3D969A;
}
.section-green .btn-rounded:hover, .section-green .btn-rounded:focus {
color: #368488;
}
.section-green :not(pre) > code[class*="language-"], .section-green pre[class*="language-"] {
color: #3D969A;
}
.section-white {
color: #2a333c;
background-color: white;
}
.section-white .widget-featured .indie-content {
background-color: #2a333c;
color: white;
}
.section-white .widget-featured .btn-indie, .section-white .btn-indie.inverse {
background-color: white;
color: #2a333c;
}
.section-white .widget-featured .btn-indie:hover, .section-white .btn-indie.inverse:hover {
background-color: #fafafa;
}
.section-white .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #2a333c;
color: white;
}
.section-white .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #262e36;
}
.section-white .indie-header-img, .section-white .indie-header-icon {
background-color: white;
}
.section-white .indie-title::after {
color: #2a333c;
}
.section-white .separator.card {
color: white;
border: 2px solid white;
}
.section-white .indie-label {
color: #2a333c;
}
.section-white .indie-label.inverse {
background-color: #2a333c;
color: white;
}
.section-white .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: white;
}
.section-white .highlighted {
background-color: #2a333c;
color: white;
}
.section-white .highlighted.alt-color {
background-color: white;
}
.section-white .indie-combo {
border-color: white;
}
.section-white .indie-tag {
background-color: white;
}
.section-white .indie-combo-img {
background-color: white;
}
.section-white .indie-combo-img.img:after {
background-color: white;
}
.section-white .indie-img-cont h4 {
background-color: white;
}
.section-white .indie-img-cont.img:after {
background-color: white;
}
.section-white .indie-featured-img {
background-color: white;
}
.section-white .indie-featured.hoverable:hover h4, .section-white .indie-featured.hoverable:hover p {
color: #2a333c;
}
.section-white .indie-featured.hoverable:hover .btn-rounded {
background-color: #2a333c;
}
.section-white .indie-txt-cont::after, .section-white .indie-h::after {
background-color: #2a333c;
}
.section-white .btn-rounded {
background-color: #2a333c;
color: white;
}
.section-white .btn-rounded:hover, .section-white .btn-rounded:focus {
color: #f2f2f2;
}
.section-white :not(pre) > code[class*="language-"], .section-white pre[class*="language-"] {
color: white;
}
.section-light-grey {
color: #2a333c;
background-color: #b7b7b7;
}
.section-light-grey .widget-featured .indie-content {
background-color: #2a333c;
color: #b7b7b7;
}
.section-light-grey .widget-featured .btn-indie, .section-light-grey .btn-indie.inverse {
background-color: #b7b7b7;
color: #2a333c;
}
.section-light-grey .widget-featured .btn-indie:hover, .section-light-grey .btn-indie.inverse:hover {
background-color: #b2b2b2;
}
.section-light-grey .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #2a333c;
color: #b7b7b7;
}
.section-light-grey .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #262e36;
}
.section-light-grey .indie-header-img, .section-light-grey .indie-header-icon {
background-color: #b7b7b7;
}
.section-light-grey .indie-title::after {
color: #2a333c;
}
.section-light-grey .separator.card {
color: #b7b7b7;
border: 2px solid #b7b7b7;
}
.section-light-grey .indie-label {
color: #2a333c;
}
.section-light-grey .indie-label.inverse {
background-color: #2a333c;
color: #b7b7b7;
}
.section-light-grey .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #fcfbfb;
}
.section-light-grey .highlighted {
background-color: #2a333c;
color: #b7b7b7;
}
.section-light-grey .highlighted.alt-color {
background-color: #fcfbfb;
}
.section-light-grey .indie-combo {
border-color: #fcfbfb;
}
.section-light-grey .indie-tag {
background-color: #fcfbfb;
}
.section-light-grey .indie-combo-img {
background-color: #b7b7b7;
}
.section-light-grey .indie-combo-img.img:after {
background-color: #b7b7b7;
}
.section-light-grey .indie-img-cont h4 {
background-color: #b7b7b7;
}
.section-light-grey .indie-img-cont.img:after {
background-color: #b7b7b7;
}
.section-light-grey .indie-featured-img {
background-color: #b7b7b7;
}
.section-light-grey .indie-featured.hoverable:hover h4, .section-light-grey .indie-featured.hoverable:hover p {
color: #2a333c;
}
.section-light-grey .indie-featured.hoverable:hover .btn-rounded {
background-color: #2a333c;
}
.section-light-grey .indie-txt-cont::after, .section-light-grey .indie-h::after {
background-color: #2a333c;
}
.section-light-grey .btn-rounded {
background-color: #2a333c;
color: #b7b7b7;
}
.section-light-grey .btn-rounded:hover, .section-light-grey .btn-rounded:focus {
color: #aaaaaa;
}
.section-light-grey :not(pre) > code[class*="language-"], .section-light-grey pre[class*="language-"] {
color: #b7b7b7;
}
.section-portage {
color: #2a333c;
background-color: #74aae8;
}
.section-portage .widget-featured .indie-content {
background-color: #2a333c;
color: #74aae8;
}
.section-portage .widget-featured .btn-indie, .section-portage .btn-indie.inverse {
background-color: #74aae8;
color: #2a333c;
}
.section-portage .widget-featured .btn-indie:hover, .section-portage .btn-indie.inverse:hover {
background-color: #6ba5e7;
}
.section-portage .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #2a333c;
color: #74aae8;
}
.section-portage .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #262e36;
}
.section-portage .indie-header-img, .section-portage .indie-header-icon {
background-color: #74aae8;
}
.section-portage .indie-title::after {
color: #2a333c;
}
.section-portage .separator.card {
color: #74aae8;
border: 2px solid #74aae8;
}
.section-portage .indie-label {
color: #2a333c;
}
.section-portage .indie-label.inverse {
background-color: #2a333c;
color: #74aae8;
}
.section-portage .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #e8eefd;
}
.section-portage .highlighted {
background-color: #2a333c;
color: #74aae8;
}
.section-portage .highlighted.alt-color {
background-color: #e8eefd;
}
.section-portage .indie-combo {
border-color: #e8eefd;
}
.section-portage .indie-tag {
background-color: #e8eefd;
}
.section-portage .indie-combo-img {
background-color: #74aae8;
}
.section-portage .indie-combo-img.img:after {
background-color: #74aae8;
}
.section-portage .indie-img-cont h4 {
background-color: #74aae8;
}
.section-portage .indie-img-cont.img:after {
background-color: #74aae8;
}
.section-portage .indie-featured-img {
background-color: #74aae8;
}
.section-portage .indie-featured.hoverable:hover h4, .section-portage .indie-featured.hoverable:hover p {
color: #2a333c;
}
.section-portage .indie-featured.hoverable:hover .btn-rounded {
background-color: #2a333c;
}
.section-portage .indie-txt-cont::after, .section-portage .indie-h::after {
background-color: #2a333c;
}
.section-portage .btn-rounded {
background-color: #2a333c;
color: #74aae8;
}
.section-portage .btn-rounded:hover, .section-portage .btn-rounded:focus {
color: #5e9de4;
}
.section-portage :not(pre) > code[class*="language-"], .section-portage pre[class*="language-"] {
color: #74aae8;
}
.section-apricot {
color: #2a333c;
background-color: #ee8675;
}
.section-apricot .widget-featured .indie-content {
background-color: #2a333c;
color: #ee8675;
}
.section-apricot .widget-featured .btn-indie, .section-apricot .btn-indie.inverse {
background-color: #ee8675;
color: #2a333c;
}
.section-apricot .widget-featured .btn-indie:hover, .section-apricot .btn-indie.inverse:hover {
background-color: #ed7e6c;
}
.section-apricot .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #2a333c;
color: #ee8675;
}
.section-apricot .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #262e36;
}
.section-apricot .indie-header-img, .section-apricot .indie-header-icon {
background-color: #ee8675;
}
.section-apricot .indie-title::after {
color: #2a333c;
}
.section-apricot .separator.card {
color: #ee8675;
border: 2px solid #ee8675;
}
.section-apricot .indie-label {
color: #2a333c;
}
.section-apricot .indie-label.inverse {
background-color: #2a333c;
color: #ee8675;
}
.section-apricot .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #fef3ee;
}
.section-apricot .highlighted {
background-color: #2a333c;
color: #ee8675;
}
.section-apricot .highlighted.alt-color {
background-color: #fef3ee;
}
.section-apricot .indie-combo {
border-color: #fef3ee;
}
.section-apricot .indie-tag {
background-color: #fef3ee;
}
.section-apricot .indie-combo-img {
background-color: #ee8675;
}
.section-apricot .indie-combo-img.img:after {
background-color: #ee8675;
}
.section-apricot .indie-img-cont h4 {
background-color: #ee8675;
}
.section-apricot .indie-img-cont.img:after {
background-color: #ee8675;
}
.section-apricot .indie-featured-img {
background-color: #ee8675;
}
.section-apricot .indie-featured.hoverable:hover h4, .section-apricot .indie-featured.hoverable:hover p {
color: #2a333c;
}
.section-apricot .indie-featured.hoverable:hover .btn-rounded {
background-color: #2a333c;
}
.section-apricot .indie-txt-cont::after, .section-apricot .indie-h::after {
background-color: #2a333c;
}
.section-apricot .btn-rounded {
background-color: #2a333c;
color: #ee8675;
}
.section-apricot .btn-rounded:hover, .section-apricot .btn-rounded:focus {
color: #eb725e;
}
.section-apricot :not(pre) > code[class*="language-"], .section-apricot pre[class*="language-"] {
color: #ee8675;
}
.section-trendypink {
color: #2a333c;
background-color: #8d5a97;
}
.section-trendypink .widget-featured .indie-content {
background-color: #2a333c;
color: #8d5a97;
}
.section-trendypink .widget-featured .btn-indie, .section-trendypink .btn-indie.inverse {
background-color: #8d5a97;
color: #2a333c;
}
.section-trendypink .widget-featured .btn-indie:hover, .section-trendypink .btn-indie.inverse:hover {
background-color: #875691;
}
.section-trendypink .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #2a333c;
color: #8d5a97;
}
.section-trendypink .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #262e36;
}
.section-trendypink .indie-header-img, .section-trendypink .indie-header-icon {
background-color: #8d5a97;
}
.section-trendypink .indie-title::after {
color: #2a333c;
}
.section-trendypink .separator.card {
color: #8d5a97;
border: 2px solid #8d5a97;
}
.section-trendypink .indie-label {
color: #2a333c;
}
.section-trendypink .indie-label.inverse {
background-color: #2a333c;
color: #8d5a97;
}
.section-trendypink .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #d8a2d7;
}
.section-trendypink .highlighted {
background-color: #2a333c;
color: #8d5a97;
}
.section-trendypink .highlighted.alt-color {
background-color: #d8a2d7;
}
.section-trendypink .indie-combo {
border-color: #d8a2d7;
}
.section-trendypink .indie-tag {
background-color: #d8a2d7;
}
.section-trendypink .indie-combo-img {
background-color: #8d5a97;
}
.section-trendypink .indie-combo-img.img:after {
background-color: #8d5a97;
}
.section-trendypink .indie-img-cont h4 {
background-color: #8d5a97;
}
.section-trendypink .indie-img-cont.img:after {
background-color: #8d5a97;
}
.section-trendypink .indie-featured-img {
background-color: #8d5a97;
}
.section-trendypink .indie-featured.hoverable:hover h4, .section-trendypink .indie-featured.hoverable:hover p {
color: #2a333c;
}
.section-trendypink .indie-featured.hoverable:hover .btn-rounded {
background-color: #2a333c;
}
.section-trendypink .indie-txt-cont::after, .section-trendypink .indie-h::after {
background-color: #2a333c;
}
.section-trendypink .btn-rounded {
background-color: #2a333c;
color: #8d5a97;
}
.section-trendypink .btn-rounded:hover, .section-trendypink .btn-rounded:focus {
color: #7e5087;
}
.section-trendypink :not(pre) > code[class*="language-"], .section-trendypink pre[class*="language-"] {
color: #8d5a97;
}
.section-turquoiseblue {
color: #2a333c;
background-color: #59eecc;
}
.section-turquoiseblue .widget-featured .indie-content {
background-color: #2a333c;
color: #59eecc;
}
.section-turquoiseblue .widget-featured .btn-indie, .section-turquoiseblue .btn-indie.inverse {
background-color: #59eecc;
color: #2a333c;
}
.section-turquoiseblue .widget-featured .btn-indie:hover, .section-turquoiseblue .btn-indie.inverse:hover {
background-color: #50edc9;
}
.section-turquoiseblue .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #2a333c;
color: #59eecc;
}
.section-turquoiseblue .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #262e36;
}
.section-turquoiseblue .indie-header-img, .section-turquoiseblue .indie-header-icon {
background-color: #59eecc;
}
.section-turquoiseblue .indie-title::after {
color: #2a333c;
}
.section-turquoiseblue .separator.card {
color: #59eecc;
border: 2px solid #59eecc;
}
.section-turquoiseblue .indie-label {
color: #2a333c;
}
.section-turquoiseblue .indie-label.inverse {
background-color: #2a333c;
color: #59eecc;
}
.section-turquoiseblue .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #d2fefc;
}
.section-turquoiseblue .highlighted {
background-color: #2a333c;
color: #59eecc;
}
.section-turquoiseblue .highlighted.alt-color {
background-color: #d2fefc;
}
.section-turquoiseblue .indie-combo {
border-color: #d2fefc;
}
.section-turquoiseblue .indie-tag {
background-color: #d2fefc;
}
.section-turquoiseblue .indie-combo-img {
background-color: #59eecc;
}
.section-turquoiseblue .indie-combo-img.img:after {
background-color: #59eecc;
}
.section-turquoiseblue .indie-img-cont h4 {
background-color: #59eecc;
}
.section-turquoiseblue .indie-img-cont.img:after {
background-color: #59eecc;
}
.section-turquoiseblue .indie-featured-img {
background-color: #59eecc;
}
.section-turquoiseblue .indie-featured.hoverable:hover h4, .section-turquoiseblue .indie-featured.hoverable:hover p {
color: #2a333c;
}
.section-turquoiseblue .indie-featured.hoverable:hover .btn-rounded {
background-color: #2a333c;
}
.section-turquoiseblue .indie-txt-cont::after, .section-turquoiseblue .indie-h::after {
background-color: #2a333c;
}
.section-turquoiseblue .btn-rounded {
background-color: #2a333c;
color: #59eecc;
}
.section-turquoiseblue .btn-rounded:hover, .section-turquoiseblue .btn-rounded:focus {
color: #42ecc5;
}
.section-turquoiseblue :not(pre) > code[class*="language-"], .section-turquoiseblue pre[class*="language-"] {
color: #59eecc;
}
.section-montecarlo {
color: #2a333c;
background-color: #7dcac2;
}
.section-montecarlo .widget-featured .indie-content {
background-color: #2a333c;
color: #7dcac2;
}
.section-montecarlo .widget-featured .btn-indie, .section-montecarlo .btn-indie.inverse {
background-color: #7dcac2;
color: #2a333c;
}
.section-montecarlo .widget-featured .btn-indie:hover, .section-montecarlo .btn-indie.inverse:hover {
background-color: #76c7bf;
}
.section-montecarlo .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #2a333c;
color: #7dcac2;
}
.section-montecarlo .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #262e36;
}
.section-montecarlo .indie-header-img, .section-montecarlo .indie-header-icon {
background-color: #7dcac2;
}
.section-montecarlo .indie-title::after {
color: #2a333c;
}
.section-montecarlo .separator.card {
color: #7dcac2;
border: 2px solid #7dcac2;
}
.section-montecarlo .indie-label {
color: #2a333c;
}
.section-montecarlo .indie-label.inverse {
background-color: #2a333c;
color: #7dcac2;
}
.section-montecarlo .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #dbf3f5;
}
.section-montecarlo .highlighted {
background-color: #2a333c;
color: #7dcac2;
}
.section-montecarlo .highlighted.alt-color {
background-color: #dbf3f5;
}
.section-montecarlo .indie-combo {
border-color: #dbf3f5;
}
.section-montecarlo .indie-tag {
background-color: #dbf3f5;
}
.section-montecarlo .indie-combo-img {
background-color: #7dcac2;
}
.section-montecarlo .indie-combo-img.img:after {
background-color: #7dcac2;
}
.section-montecarlo .indie-img-cont h4 {
background-color: #7dcac2;
}
.section-montecarlo .indie-img-cont.img:after {
background-color: #7dcac2;
}
.section-montecarlo .indie-featured-img {
background-color: #7dcac2;
}
.section-montecarlo .indie-featured.hoverable:hover h4, .section-montecarlo .indie-featured.hoverable:hover p {
color: #2a333c;
}
.section-montecarlo .indie-featured.hoverable:hover .btn-rounded {
background-color: #2a333c;
}
.section-montecarlo .indie-txt-cont::after, .section-montecarlo .indie-h::after {
background-color: #2a333c;
}
.section-montecarlo .btn-rounded {
background-color: #2a333c;
color: #7dcac2;
}
.section-montecarlo .btn-rounded:hover, .section-montecarlo .btn-rounded:focus {
color: #6bc3ba;
}
.section-montecarlo :not(pre) > code[class*="language-"], .section-montecarlo pre[class*="language-"] {
color: #7dcac2;
}
.section-chenin {
color: #2a333c;
background-color: #e1cd76;
}
.section-chenin .widget-featured .indie-content {
background-color: #2a333c;
color: #e1cd76;
}
.section-chenin .widget-featured .btn-indie, .section-chenin .btn-indie.inverse {
background-color: #e1cd76;
color: #2a333c;
}
.section-chenin .widget-featured .btn-indie:hover, .section-chenin .btn-indie.inverse:hover {
background-color: #dfca6e;
}
.section-chenin .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #2a333c;
color: #e1cd76;
}
.section-chenin .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #262e36;
}
.section-chenin .indie-header-img, .section-chenin .indie-header-icon {
background-color: #e1cd76;
}
.section-chenin .indie-title::after {
color: #2a333c;
}
.section-chenin .separator.card {
color: #e1cd76;
border: 2px solid #e1cd76;
}
.section-chenin .indie-label {
color: #2a333c;
}
.section-chenin .indie-label.inverse {
background-color: #2a333c;
color: #e1cd76;
}
.section-chenin .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #fcfce4;
}
.section-chenin .highlighted {
background-color: #2a333c;
color: #e1cd76;
}
.section-chenin .highlighted.alt-color {
background-color: #fcfce4;
}
.section-chenin .indie-combo {
border-color: #fcfce4;
}
.section-chenin .indie-tag {
background-color: #fcfce4;
}
.section-chenin .indie-combo-img {
background-color: #e1cd76;
}
.section-chenin .indie-combo-img.img:after {
background-color: #e1cd76;
}
.section-chenin .indie-img-cont h4 {
background-color: #e1cd76;
}
.section-chenin .indie-img-cont.img:after {
background-color: #e1cd76;
}
.section-chenin .indie-featured-img {
background-color: #e1cd76;
}
.section-chenin .indie-featured.hoverable:hover h4, .section-chenin .indie-featured.hoverable:hover p {
color: #2a333c;
}
.section-chenin .indie-featured.hoverable:hover .btn-rounded {
background-color: #2a333c;
}
.section-chenin .indie-txt-cont::after, .section-chenin .indie-h::after {
background-color: #2a333c;
}
.section-chenin .btn-rounded {
background-color: #2a333c;
color: #e1cd76;
}
.section-chenin .btn-rounded:hover, .section-chenin .btn-rounded:focus {
color: #dcc561;
}
.section-chenin :not(pre) > code[class*="language-"], .section-chenin pre[class*="language-"] {
color: #e1cd76;
}
.section-mediumpurple {
color: #2a333c;
background-color: #6e71df;
}
.section-mediumpurple .widget-featured .indie-content {
background-color: #2a333c;
color: #6e71df;
}
.section-mediumpurple .widget-featured .btn-indie, .section-mediumpurple .btn-indie.inverse {
background-color: #6e71df;
color: #2a333c;
}
.section-mediumpurple .widget-featured .btn-indie:hover, .section-mediumpurple .btn-indie.inverse:hover {
background-color: #6669dd;
}
.section-mediumpurple .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #2a333c;
color: #6e71df;
}
.section-mediumpurple .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #262e36;
}
.section-mediumpurple .indie-header-img, .section-mediumpurple .indie-header-icon {
background-color: #6e71df;
}
.section-mediumpurple .indie-title::after {
color: #2a333c;
}
.section-mediumpurple .separator.card {
color: #6e71df;
border: 2px solid #6e71df;
}
.section-mediumpurple .indie-label {
color: #2a333c;
}
.section-mediumpurple .indie-label.inverse {
background-color: #2a333c;
color: #6e71df;
}
.section-mediumpurple .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #e0dbfb;
}
.section-mediumpurple .highlighted {
background-color: #2a333c;
color: #6e71df;
}
.section-mediumpurple .highlighted.alt-color {
background-color: #e0dbfb;
}
.section-mediumpurple .indie-combo {
border-color: #e0dbfb;
}
.section-mediumpurple .indie-tag {
background-color: #e0dbfb;
}
.section-mediumpurple .indie-combo-img {
background-color: #6e71df;
}
.section-mediumpurple .indie-combo-img.img:after {
background-color: #6e71df;
}
.section-mediumpurple .indie-img-cont h4 {
background-color: #6e71df;
}
.section-mediumpurple .indie-img-cont.img:after {
background-color: #6e71df;
}
.section-mediumpurple .indie-featured-img {
background-color: #6e71df;
}
.section-mediumpurple .indie-featured.hoverable:hover h4, .section-mediumpurple .indie-featured.hoverable:hover p {
color: #2a333c;
}
.section-mediumpurple .indie-featured.hoverable:hover .btn-rounded {
background-color: #2a333c;
}
.section-mediumpurple .indie-txt-cont::after, .section-mediumpurple .indie-h::after {
background-color: #2a333c;
}
.section-mediumpurple .btn-rounded {
background-color: #2a333c;
color: #6e71df;
}
.section-mediumpurple .btn-rounded:hover, .section-mediumpurple .btn-rounded:focus {
color: #595dda;
}
.section-mediumpurple :not(pre) > code[class*="language-"], .section-mediumpurple pre[class*="language-"] {
color: #6e71df;
}
.section-dark {
color: #b7b7b7;
background-color: #2a333c;
}
.section-dark .widget-featured .indie-content {
background-color: #2a333c;
color: #2a333c;
}
.section-dark .widget-featured .btn-indie, .section-dark .btn-indie.inverse {
background-color: #2a333c;
color: #2a333c;
}
.section-dark .widget-featured .btn-indie:hover, .section-dark .btn-indie.inverse:hover {
background-color: #262e36;
}
.section-dark .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #2a333c;
color: #2a333c;
}
.section-dark .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #262e36;
}
.section-dark .indie-header-img, .section-dark .indie-header-icon {
background-color: #2a333c;
}
.section-dark .indie-title::after {
color: #2a333c;
}
.section-dark .separator.card {
color: #2a333c;
border: 2px solid #2a333c;
}
.section-dark .indie-label {
color: #2a333c;
}
.section-dark .indie-label.inverse {
background-color: #2a333c;
color: #2a333c;
}
.section-dark .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #50699f;
}
.section-dark .highlighted {
background-color: #2a333c;
color: #2a333c;
}
.section-dark .highlighted.alt-color {
background-color: #50699f;
}
.section-dark .indie-combo {
border-color: #50699f;
}
.section-dark .indie-tag {
background-color: #50699f;
}
.section-dark .indie-combo-img {
background-color: #2a333c;
}
.section-dark .indie-combo-img.img:after {
background-color: #2a333c;
}
.section-dark .indie-img-cont h4 {
background-color: #2a333c;
}
.section-dark .indie-img-cont.img:after {
background-color: #2a333c;
}
.section-dark .indie-featured-img {
background-color: #2a333c;
}
.section-dark .indie-featured.hoverable:hover h4, .section-dark .indie-featured.hoverable:hover p {
color: #2a333c;
}
.section-dark .indie-featured.hoverable:hover .btn-rounded {
background-color: #2a333c;
}
.section-dark .indie-txt-cont::after, .section-dark .indie-h::after {
background-color: #2a333c;
}
.section-dark .btn-rounded {
background-color: #2a333c;
color: #2a333c;
}
.section-dark .btn-rounded:hover, .section-dark .btn-rounded:focus {
color: #1f262d;
}
.section-dark :not(pre) > code[class*="language-"], .section-dark pre[class*="language-"] {
color: #2a333c;
}
/*
**
** Indie Colors
**
*/
.indie-red {
color: #c05b5b;
}
.section .indie-red .widget-featured .indie-content {
background-color: #c05b5b;
}
.section .indie-red .widget-featured .btn-indie {
background-color: #2a333c;
color: #c05b5b;
}
.indie-red.section .widget-featured .indie-content {
background-color: #c05b5b;
}
.indie-red.section .widget-featured .btn-indie {
background-color: #2a333c;
color: #c05b5b;
}
.indie-red.indie-widget.widget-featured .indie-content {
background-color: #c05b5b;
}
.indie-red.indie-widget.widget-featured .btn-indie {
background-color: #2a333c;
color: #c05b5b;
}
.indie-red.indie-widget :not(pre) > code[class*="language-"], .indie-red.indie-widget pre[class*="language-"] {
color: #c05b5b;
}
.indie-red.indie-widget code {
color: #c05b5b;
}
.indie-red .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #c05b5b;
}
.indie-red .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #bd5454;
}
.widget-featured .indie-red .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple), .indie-red .btn-indie.inverse:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
color: #c05b5b;
background-color: #2a333c;
}
.widget-featured .indie-red .btn-indie:hover, .indie-red .btn-indie.inverse:hover {
background-color: #262e36;
}
.indie-red .indie-navigation a {
color: #c05b5b;
}
.indie-red .indie-navigation > li:hover > a, .indie-red .indie-navigation > li.active > a, .indie-red .indie-navigation > li.active > a:hover, .indie-red .indie-navigation > li.active > a:focus {
color: #c05b5b;
border: 2px solid #c05b5b;
}
.indie-red .indie-navigation > li > a:focus {
color: #c05b5b;
}
.indie-red .section[class*="section-"] {
background-color: #c05b5b;
color: #2a333c;
}
.indie-red .section[class*="section-"] .indie-widget {
border-color: #2a333c;
}
.indie-red .section[class*="section-"] .indie-header {
border-bottom-color: currentColor;
}
.indie-red .section[class*="section-"] .indie-title:after {
background-color: currentColor;
}
.indie-red .section[class*="section-"] .indie-header-img {
background-color: #c05b5b;
}
.indie-red .section[class*="section-"] .indie-svg {
color: #2a333c;
}
.indie-red .section[class*="section-"] .btn-indie {
background-color: #2a333c;
color: #c05b5b;
}
.indie-red .section[class*="section-"] .widget-featured .indie-content {
color: #c05b5b;
}
.indie-red .section[class*="section-"] .widget-featured .btn-indie {
background-color: #c05b5b;
color: #2a333c;
}
.indie-red .section[class*="section-"] :not(pre) > code[class*="language-"], .indie-red .section[class*="section-"] pre[class*="language-"] {
color: #c05b5b;
}
.indie-red .section[class*="section-"] code {
color: #c05b5b;
}
.indie-red .section:not([class*="section-"]) .widget-featured .indie-content {
background-color: #c05b5b;
}
.indie-red .section:not([class*="section-"]) .widget-featured .btn-indie {
background-color: #2a333c;
color: #c05b5b;
}
.indie-red .indie-venue .indie-bg {
background-color: #c05b5b;
}
.indie-red blockquote footer {
color: #c05b5b;
}
.indie-red blockquote footer::before {
background-color: #c05b5b;
}
.indie-red .separator.card {
color: #c05b5b;
border: 2px solid;
}
.indie-red .indie-header {
border-bottom: 2px solid #c05b5b;
}
.indie-red .indie-widget {
border: 2px solid;
}
.indie-red .indie-controls button {
border-left-color: #c05b5b;
}
.indie-red .indie-controls path {
stroke: #c05b5b;
}
.indie-red .indie-title::after {
background-color: #c05b5b;
}
.indie-red .indie-event-img {
background-color: #c05b5b;
}
.indie-red .indie-featured-img {
background-color: #c05b5b;
}
.indie-red .indie-featured:not(:nth-of-type(3n))::after {
background-color: #c05b5b;
}
.indie-red .indie-featured h4 {
color: #c05b5b;
}
.indie-red .indie-featured.hoverable:hover h4, .indie-red .indie-featured.hoverable:hover p {
color: #edc1b7;
}
.indie-red .indie-featured.hoverable:hover .btn-rounded {
background-color: #edc1b7;
}
.indie-red .indie-txt-cont::after, .indie-red .indie-h::after {
background-color: #c05b5b;
}
.indie-red .btn-rounded {
background-color: #c05b5b;
}
.indie-red .indie-label.inverse {
background-color: #c05b5b;
}
.indie-red .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #edc1b7;
}
.indie-red .indie-svg {
color: #c05b5b;
}
.indie-red .lines {
background-color: #c05b5b;
}
.indie-red .lines::after, .indie-red .lines::before {
background-color: #c05b5b;
}
.indie-red .highlighted {
background-color: #c05b5b;
}
.indie-red .highlighted.alt-color {
background-color: #edc1b7;
color: #2a333c !important;
}
.indie-red .indie-combo {
border-color: #edc1b7;
}
.indie-red .indie-tag {
background-color: #edc1b7;
}
.indie-green {
color: #3D969A;
}
.section .indie-green .widget-featured .indie-content {
background-color: #3D969A;
}
.section .indie-green .widget-featured .btn-indie {
background-color: #2a333c;
color: #3D969A;
}
.indie-green.section .widget-featured .indie-content {
background-color: #3D969A;
}
.indie-green.section .widget-featured .btn-indie {
background-color: #2a333c;
color: #3D969A;
}
.indie-green.indie-widget.widget-featured .indie-content {
background-color: #3D969A;
}
.indie-green.indie-widget.widget-featured .btn-indie {
background-color: #2a333c;
color: #3D969A;
}
.indie-green.indie-widget :not(pre) > code[class*="language-"], .indie-green.indie-widget pre[class*="language-"] {
color: #3D969A;
}
.indie-green.indie-widget code {
color: #3D969A;
}
.indie-green .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #3D969A;
}
.indie-green .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #3a8f93;
}
.widget-featured .indie-green .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple), .indie-green .btn-indie.inverse:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
color: #3D969A;
background-color: #2a333c;
}
.widget-featured .indie-green .btn-indie:hover, .indie-green .btn-indie.inverse:hover {
background-color: #262e36;
}
.indie-green .indie-navigation a {
color: #3D969A;
}
.indie-green .indie-navigation > li:hover > a, .indie-green .indie-navigation > li.active > a, .indie-green .indie-navigation > li.active > a:hover, .indie-green .indie-navigation > li.active > a:focus {
color: #3D969A;
border: 2px solid #3D969A;
}
.indie-green .indie-navigation > li > a:focus {
color: #3D969A;
}
.indie-green .section[class*="section-"] {
background-color: #3D969A;
color: #2a333c;
}
.indie-green .section[class*="section-"] .indie-widget {
border-color: #2a333c;
}
.indie-green .section[class*="section-"] .indie-header {
border-bottom-color: currentColor;
}
.indie-green .section[class*="section-"] .indie-title:after {
background-color: currentColor;
}
.indie-green .section[class*="section-"] .indie-header-img {
background-color: #3D969A;
}
.indie-green .section[class*="section-"] .indie-svg {
color: #2a333c;
}
.indie-green .section[class*="section-"] .btn-indie {
background-color: #2a333c;
color: #3D969A;
}
.indie-green .section[class*="section-"] .widget-featured .indie-content {
color: #3D969A;
}
.indie-green .section[class*="section-"] .widget-featured .btn-indie {
background-color: #3D969A;
color: #2a333c;
}
.indie-green .section[class*="section-"] :not(pre) > code[class*="language-"], .indie-green .section[class*="section-"] pre[class*="language-"] {
color: #3D969A;
}
.indie-green .section[class*="section-"] code {
color: #3D969A;
}
.indie-green .section:not([class*="section-"]) .widget-featured .indie-content {
background-color: #3D969A;
}
.indie-green .section:not([class*="section-"]) .widget-featured .btn-indie {
background-color: #2a333c;
color: #3D969A;
}
.indie-green .indie-venue .indie-bg {
background-color: #3D969A;
}
.indie-green blockquote footer {
color: #3D969A;
}
.indie-green blockquote footer::before {
background-color: #3D969A;
}
.indie-green .separator.card {
color: #3D969A;
border: 2px solid;
}
.indie-green .indie-header {
border-bottom: 2px solid #3D969A;
}
.indie-green .indie-widget {
border: 2px solid;
}
.indie-green .indie-controls button {
border-left-color: #3D969A;
}
.indie-green .indie-controls path {
stroke: #3D969A;
}
.indie-green .indie-title::after {
background-color: #3D969A;
}
.indie-green .indie-event-img {
background-color: #3D969A;
}
.indie-green .indie-featured-img {
background-color: #3D969A;
}
.indie-green .indie-featured:not(:nth-of-type(3n))::after {
background-color: #3D969A;
}
.indie-green .indie-featured h4 {
color: #3D969A;
}
.indie-green .indie-featured.hoverable:hover h4, .indie-green .indie-featured.hoverable:hover p {
color: #82c9de;
}
.indie-green .indie-featured.hoverable:hover .btn-rounded {
background-color: #82c9de;
}
.indie-green .indie-txt-cont::after, .indie-green .indie-h::after {
background-color: #3D969A;
}
.indie-green .btn-rounded {
background-color: #3D969A;
}
.indie-green .indie-label.inverse {
background-color: #3D969A;
}
.indie-green .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #82c9de;
}
.indie-green .indie-svg {
color: #3D969A;
}
.indie-green .lines {
background-color: #3D969A;
}
.indie-green .lines::after, .indie-green .lines::before {
background-color: #3D969A;
}
.indie-green .highlighted {
background-color: #3D969A;
}
.indie-green .highlighted.alt-color {
background-color: #82c9de;
color: #2a333c !important;
}
.indie-green .indie-combo {
border-color: #82c9de;
}
.indie-green .indie-tag {
background-color: #82c9de;
}
.indie-white {
color: white;
}
.section .indie-white .widget-featured .indie-content {
background-color: white;
}
.section .indie-white .widget-featured .btn-indie {
background-color: #2a333c;
color: white;
}
.indie-white.section .widget-featured .indie-content {
background-color: white;
}
.indie-white.section .widget-featured .btn-indie {
background-color: #2a333c;
color: white;
}
.indie-white.indie-widget.widget-featured .indie-content {
background-color: white;
}
.indie-white.indie-widget.widget-featured .btn-indie {
background-color: #2a333c;
color: white;
}
.indie-white.indie-widget :not(pre) > code[class*="language-"], .indie-white.indie-widget pre[class*="language-"] {
color: white;
}
.indie-white.indie-widget code {
color: white;
}
.indie-white .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: white;
}
.indie-white .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #fafafa;
}
.widget-featured .indie-white .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple), .indie-white .btn-indie.inverse:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
color: white;
background-color: #2a333c;
}
.widget-featured .indie-white .btn-indie:hover, .indie-white .btn-indie.inverse:hover {
background-color: #262e36;
}
.indie-white .indie-navigation a {
color: white;
}
.indie-white .indie-navigation > li:hover > a, .indie-white .indie-navigation > li.active > a, .indie-white .indie-navigation > li.active > a:hover, .indie-white .indie-navigation > li.active > a:focus {
color: white;
border: 2px solid white;
}
.indie-white .indie-navigation > li > a:focus {
color: white;
}
.indie-white .section[class*="section-"] {
background-color: white;
color: #2a333c;
}
.indie-white .section[class*="section-"] .indie-widget {
border-color: #2a333c;
}
.indie-white .section[class*="section-"] .indie-header {
border-bottom-color: currentColor;
}
.indie-white .section[class*="section-"] .indie-title:after {
background-color: currentColor;
}
.indie-white .section[class*="section-"] .indie-header-img {
background-color: white;
}
.indie-white .section[class*="section-"] .indie-svg {
color: #2a333c;
}
.indie-white .section[class*="section-"] .btn-indie {
background-color: #2a333c;
color: white;
}
.indie-white .section[class*="section-"] .widget-featured .indie-content {
color: white;
}
.indie-white .section[class*="section-"] .widget-featured .btn-indie {
background-color: white;
color: #2a333c;
}
.indie-white .section[class*="section-"] :not(pre) > code[class*="language-"], .indie-white .section[class*="section-"] pre[class*="language-"] {
color: white;
}
.indie-white .section[class*="section-"] code {
color: white;
}
.indie-white .section:not([class*="section-"]) .widget-featured .indie-content {
background-color: white;
}
.indie-white .section:not([class*="section-"]) .widget-featured .btn-indie {
background-color: #2a333c;
color: white;
}
.indie-white .indie-venue .indie-bg {
background-color: white;
}
.indie-white blockquote footer {
color: white;
}
.indie-white blockquote footer::before {
background-color: white;
}
.indie-white .separator.card {
color: white;
border: 2px solid;
}
.indie-white .indie-header {
border-bottom: 2px solid white;
}
.indie-white .indie-widget {
border: 2px solid;
}
.indie-white .indie-controls button {
border-left-color: white;
}
.indie-white .indie-controls path {
stroke: white;
}
.indie-white .indie-title::after {
background-color: white;
}
.indie-white .indie-event-img {
background-color: white;
}
.indie-white .indie-featured-img {
background-color: white;
}
.indie-white .indie-featured:not(:nth-of-type(3n))::after {
background-color: white;
}
.indie-white .indie-featured h4 {
color: white;
}
.indie-white .indie-featured.hoverable:hover h4, .indie-white .indie-featured.hoverable:hover p {
color: white;
}
.indie-white .indie-featured.hoverable:hover .btn-rounded {
background-color: white;
}
.indie-white .indie-txt-cont::after, .indie-white .indie-h::after {
background-color: white;
}
.indie-white .btn-rounded {
background-color: white;
}
.indie-white .indie-label.inverse {
background-color: white;
}
.indie-white .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: white;
}
.indie-white .indie-svg {
color: white;
}
.indie-white .lines {
background-color: white;
}
.indie-white .lines::after, .indie-white .lines::before {
background-color: white;
}
.indie-white .highlighted {
background-color: white;
}
.indie-white .highlighted.alt-color {
background-color: white;
color: #2a333c !important;
}
.indie-white .indie-combo {
border-color: white;
}
.indie-white .indie-tag {
background-color: white;
}
.indie-light-grey {
color: #b7b7b7;
}
.section .indie-light-grey .widget-featured .indie-content {
background-color: #b7b7b7;
}
.section .indie-light-grey .widget-featured .btn-indie {
background-color: #2a333c;
color: #b7b7b7;
}
.indie-light-grey.section .widget-featured .indie-content {
background-color: #b7b7b7;
}
.indie-light-grey.section .widget-featured .btn-indie {
background-color: #2a333c;
color: #b7b7b7;
}
.indie-light-grey.indie-widget.widget-featured .indie-content {
background-color: #b7b7b7;
}
.indie-light-grey.indie-widget.widget-featured .btn-indie {
background-color: #2a333c;
color: #b7b7b7;
}
.indie-light-grey.indie-widget :not(pre) > code[class*="language-"], .indie-light-grey.indie-widget pre[class*="language-"] {
color: #b7b7b7;
}
.indie-light-grey.indie-widget code {
color: #b7b7b7;
}
.indie-light-grey .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #b7b7b7;
}
.indie-light-grey .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #b2b2b2;
}
.widget-featured .indie-light-grey .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple), .indie-light-grey .btn-indie.inverse:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
color: #b7b7b7;
background-color: #2a333c;
}
.widget-featured .indie-light-grey .btn-indie:hover, .indie-light-grey .btn-indie.inverse:hover {
background-color: #262e36;
}
.indie-light-grey .indie-navigation a {
color: #b7b7b7;
}
.indie-light-grey .indie-navigation > li:hover > a, .indie-light-grey .indie-navigation > li.active > a, .indie-light-grey .indie-navigation > li.active > a:hover, .indie-light-grey .indie-navigation > li.active > a:focus {
color: #b7b7b7;
border: 2px solid #b7b7b7;
}
.indie-light-grey .indie-navigation > li > a:focus {
color: #b7b7b7;
}
.indie-light-grey .section[class*="section-"] {
background-color: #b7b7b7;
color: #2a333c;
}
.indie-light-grey .section[class*="section-"] .indie-widget {
border-color: #2a333c;
}
.indie-light-grey .section[class*="section-"] .indie-header {
border-bottom-color: currentColor;
}
.indie-light-grey .section[class*="section-"] .indie-title:after {
background-color: currentColor;
}
.indie-light-grey .section[class*="section-"] .indie-header-img {
background-color: #b7b7b7;
}
.indie-light-grey .section[class*="section-"] .indie-svg {
color: #2a333c;
}
.indie-light-grey .section[class*="section-"] .btn-indie {
background-color: #2a333c;
color: #b7b7b7;
}
.indie-light-grey .section[class*="section-"] .widget-featured .indie-content {
color: #b7b7b7;
}
.indie-light-grey .section[class*="section-"] .widget-featured .btn-indie {
background-color: #b7b7b7;
color: #2a333c;
}
.indie-light-grey .section[class*="section-"] :not(pre) > code[class*="language-"], .indie-light-grey .section[class*="section-"] pre[class*="language-"] {
color: #b7b7b7;
}
.indie-light-grey .section[class*="section-"] code {
color: #b7b7b7;
}
.indie-light-grey .section:not([class*="section-"]) .widget-featured .indie-content {
background-color: #b7b7b7;
}
.indie-light-grey .section:not([class*="section-"]) .widget-featured .btn-indie {
background-color: #2a333c;
color: #b7b7b7;
}
.indie-light-grey .indie-venue .indie-bg {
background-color: #b7b7b7;
}
.indie-light-grey blockquote footer {
color: #b7b7b7;
}
.indie-light-grey blockquote footer::before {
background-color: #b7b7b7;
}
.indie-light-grey .separator.card {
color: #b7b7b7;
border: 2px solid;
}
.indie-light-grey .indie-header {
border-bottom: 2px solid #b7b7b7;
}
.indie-light-grey .indie-widget {
border: 2px solid;
}
.indie-light-grey .indie-controls button {
border-left-color: #b7b7b7;
}
.indie-light-grey .indie-controls path {
stroke: #b7b7b7;
}
.indie-light-grey .indie-title::after {
background-color: #b7b7b7;
}
.indie-light-grey .indie-event-img {
background-color: #b7b7b7;
}
.indie-light-grey .indie-featured-img {
background-color: #b7b7b7;
}
.indie-light-grey .indie-featured:not(:nth-of-type(3n))::after {
background-color: #b7b7b7;
}
.indie-light-grey .indie-featured h4 {
color: #b7b7b7;
}
.indie-light-grey .indie-featured.hoverable:hover h4, .indie-light-grey .indie-featured.hoverable:hover p {
color: #fcfbfb;
}
.indie-light-grey .indie-featured.hoverable:hover .btn-rounded {
background-color: #fcfbfb;
}
.indie-light-grey .indie-txt-cont::after, .indie-light-grey .indie-h::after {
background-color: #b7b7b7;
}
.indie-light-grey .btn-rounded {
background-color: #b7b7b7;
}
.indie-light-grey .indie-label.inverse {
background-color: #b7b7b7;
}
.indie-light-grey .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #fcfbfb;
}
.indie-light-grey .indie-svg {
color: #b7b7b7;
}
.indie-light-grey .lines {
background-color: #b7b7b7;
}
.indie-light-grey .lines::after, .indie-light-grey .lines::before {
background-color: #b7b7b7;
}
.indie-light-grey .highlighted {
background-color: #b7b7b7;
}
.indie-light-grey .highlighted.alt-color {
background-color: #fcfbfb;
color: #2a333c !important;
}
.indie-light-grey .indie-combo {
border-color: #fcfbfb;
}
.indie-light-grey .indie-tag {
background-color: #fcfbfb;
}
.indie-portage {
color: #74aae8;
}
.section .indie-portage .widget-featured .indie-content {
background-color: #74aae8;
}
.section .indie-portage .widget-featured .btn-indie {
background-color: #2a333c;
color: #74aae8;
}
.indie-portage.section .widget-featured .indie-content {
background-color: #74aae8;
}
.indie-portage.section .widget-featured .btn-indie {
background-color: #2a333c;
color: #74aae8;
}
.indie-portage.indie-widget.widget-featured .indie-content {
background-color: #74aae8;
}
.indie-portage.indie-widget.widget-featured .btn-indie {
background-color: #2a333c;
color: #74aae8;
}
.indie-portage.indie-widget :not(pre) > code[class*="language-"], .indie-portage.indie-widget pre[class*="language-"] {
color: #74aae8;
}
.indie-portage.indie-widget code {
color: #74aae8;
}
.indie-portage .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #74aae8;
}
.indie-portage .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #6ba5e7;
}
.widget-featured .indie-portage .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple), .indie-portage .btn-indie.inverse:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
color: #74aae8;
background-color: #2a333c;
}
.widget-featured .indie-portage .btn-indie:hover, .indie-portage .btn-indie.inverse:hover {
background-color: #262e36;
}
.indie-portage .indie-navigation a {
color: #74aae8;
}
.indie-portage .indie-navigation > li:hover > a, .indie-portage .indie-navigation > li.active > a, .indie-portage .indie-navigation > li.active > a:hover, .indie-portage .indie-navigation > li.active > a:focus {
color: #74aae8;
border: 2px solid #74aae8;
}
.indie-portage .indie-navigation > li > a:focus {
color: #74aae8;
}
.indie-portage .section[class*="section-"] {
background-color: #74aae8;
color: #2a333c;
}
.indie-portage .section[class*="section-"] .indie-widget {
border-color: #2a333c;
}
.indie-portage .section[class*="section-"] .indie-header {
border-bottom-color: currentColor;
}
.indie-portage .section[class*="section-"] .indie-title:after {
background-color: currentColor;
}
.indie-portage .section[class*="section-"] .indie-header-img {
background-color: #74aae8;
}
.indie-portage .section[class*="section-"] .indie-svg {
color: #2a333c;
}
.indie-portage .section[class*="section-"] .btn-indie {
background-color: #2a333c;
color: #74aae8;
}
.indie-portage .section[class*="section-"] .widget-featured .indie-content {
color: #74aae8;
}
.indie-portage .section[class*="section-"] .widget-featured .btn-indie {
background-color: #74aae8;
color: #2a333c;
}
.indie-portage .section[class*="section-"] :not(pre) > code[class*="language-"], .indie-portage .section[class*="section-"] pre[class*="language-"] {
color: #74aae8;
}
.indie-portage .section[class*="section-"] code {
color: #74aae8;
}
.indie-portage .section:not([class*="section-"]) .widget-featured .indie-content {
background-color: #74aae8;
}
.indie-portage .section:not([class*="section-"]) .widget-featured .btn-indie {
background-color: #2a333c;
color: #74aae8;
}
.indie-portage .indie-venue .indie-bg {
background-color: #74aae8;
}
.indie-portage blockquote footer {
color: #74aae8;
}
.indie-portage blockquote footer::before {
background-color: #74aae8;
}
.indie-portage .separator.card {
color: #74aae8;
border: 2px solid;
}
.indie-portage .indie-header {
border-bottom: 2px solid #74aae8;
}
.indie-portage .indie-widget {
border: 2px solid;
}
.indie-portage .indie-controls button {
border-left-color: #74aae8;
}
.indie-portage .indie-controls path {
stroke: #74aae8;
}
.indie-portage .indie-title::after {
background-color: #74aae8;
}
.indie-portage .indie-event-img {
background-color: #74aae8;
}
.indie-portage .indie-featured-img {
background-color: #74aae8;
}
.indie-portage .indie-featured:not(:nth-of-type(3n))::after {
background-color: #74aae8;
}
.indie-portage .indie-featured h4 {
color: #74aae8;
}
.indie-portage .indie-featured.hoverable:hover h4, .indie-portage .indie-featured.hoverable:hover p {
color: #e8eefd;
}
.indie-portage .indie-featured.hoverable:hover .btn-rounded {
background-color: #e8eefd;
}
.indie-portage .indie-txt-cont::after, .indie-portage .indie-h::after {
background-color: #74aae8;
}
.indie-portage .btn-rounded {
background-color: #74aae8;
}
.indie-portage .indie-label.inverse {
background-color: #74aae8;
}
.indie-portage .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #e8eefd;
}
.indie-portage .indie-svg {
color: #74aae8;
}
.indie-portage .lines {
background-color: #74aae8;
}
.indie-portage .lines::after, .indie-portage .lines::before {
background-color: #74aae8;
}
.indie-portage .highlighted {
background-color: #74aae8;
}
.indie-portage .highlighted.alt-color {
background-color: #e8eefd;
color: #2a333c !important;
}
.indie-portage .indie-combo {
border-color: #e8eefd;
}
.indie-portage .indie-tag {
background-color: #e8eefd;
}
.indie-apricot {
color: #ee8675;
}
.section .indie-apricot .widget-featured .indie-content {
background-color: #ee8675;
}
.section .indie-apricot .widget-featured .btn-indie {
background-color: #2a333c;
color: #ee8675;
}
.indie-apricot.section .widget-featured .indie-content {
background-color: #ee8675;
}
.indie-apricot.section .widget-featured .btn-indie {
background-color: #2a333c;
color: #ee8675;
}
.indie-apricot.indie-widget.widget-featured .indie-content {
background-color: #ee8675;
}
.indie-apricot.indie-widget.widget-featured .btn-indie {
background-color: #2a333c;
color: #ee8675;
}
.indie-apricot.indie-widget :not(pre) > code[class*="language-"], .indie-apricot.indie-widget pre[class*="language-"] {
color: #ee8675;
}
.indie-apricot.indie-widget code {
color: #ee8675;
}
.indie-apricot .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #ee8675;
}
.indie-apricot .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #ed7e6c;
}
.widget-featured .indie-apricot .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple), .indie-apricot .btn-indie.inverse:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
color: #ee8675;
background-color: #2a333c;
}
.widget-featured .indie-apricot .btn-indie:hover, .indie-apricot .btn-indie.inverse:hover {
background-color: #262e36;
}
.indie-apricot .indie-navigation a {
color: #ee8675;
}
.indie-apricot .indie-navigation > li:hover > a, .indie-apricot .indie-navigation > li.active > a, .indie-apricot .indie-navigation > li.active > a:hover, .indie-apricot .indie-navigation > li.active > a:focus {
color: #ee8675;
border: 2px solid #ee8675;
}
.indie-apricot .indie-navigation > li > a:focus {
color: #ee8675;
}
.indie-apricot .section[class*="section-"] {
background-color: #ee8675;
color: #2a333c;
}
.indie-apricot .section[class*="section-"] .indie-widget {
border-color: #2a333c;
}
.indie-apricot .section[class*="section-"] .indie-header {
border-bottom-color: currentColor;
}
.indie-apricot .section[class*="section-"] .indie-title:after {
background-color: currentColor;
}
.indie-apricot .section[class*="section-"] .indie-header-img {
background-color: #ee8675;
}
.indie-apricot .section[class*="section-"] .indie-svg {
color: #2a333c;
}
.indie-apricot .section[class*="section-"] .btn-indie {
background-color: #2a333c;
color: #ee8675;
}
.indie-apricot .section[class*="section-"] .widget-featured .indie-content {
color: #ee8675;
}
.indie-apricot .section[class*="section-"] .widget-featured .btn-indie {
background-color: #ee8675;
color: #2a333c;
}
.indie-apricot .section[class*="section-"] :not(pre) > code[class*="language-"], .indie-apricot .section[class*="section-"] pre[class*="language-"] {
color: #ee8675;
}
.indie-apricot .section[class*="section-"] code {
color: #ee8675;
}
.indie-apricot .section:not([class*="section-"]) .widget-featured .indie-content {
background-color: #ee8675;
}
.indie-apricot .section:not([class*="section-"]) .widget-featured .btn-indie {
background-color: #2a333c;
color: #ee8675;
}
.indie-apricot .indie-venue .indie-bg {
background-color: #ee8675;
}
.indie-apricot blockquote footer {
color: #ee8675;
}
.indie-apricot blockquote footer::before {
background-color: #ee8675;
}
.indie-apricot .separator.card {
color: #ee8675;
border: 2px solid;
}
.indie-apricot .indie-header {
border-bottom: 2px solid #ee8675;
}
.indie-apricot .indie-widget {
border: 2px solid;
}
.indie-apricot .indie-controls button {
border-left-color: #ee8675;
}
.indie-apricot .indie-controls path {
stroke: #ee8675;
}
.indie-apricot .indie-title::after {
background-color: #ee8675;
}
.indie-apricot .indie-event-img {
background-color: #ee8675;
}
.indie-apricot .indie-featured-img {
background-color: #ee8675;
}
.indie-apricot .indie-featured:not(:nth-of-type(3n))::after {
background-color: #ee8675;
}
.indie-apricot .indie-featured h4 {
color: #ee8675;
}
.indie-apricot .indie-featured.hoverable:hover h4, .indie-apricot .indie-featured.hoverable:hover p {
color: #fef3ee;
}
.indie-apricot .indie-featured.hoverable:hover .btn-rounded {
background-color: #fef3ee;
}
.indie-apricot .indie-txt-cont::after, .indie-apricot .indie-h::after {
background-color: #ee8675;
}
.indie-apricot .btn-rounded {
background-color: #ee8675;
}
.indie-apricot .indie-label.inverse {
background-color: #ee8675;
}
.indie-apricot .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #fef3ee;
}
.indie-apricot .indie-svg {
color: #ee8675;
}
.indie-apricot .lines {
background-color: #ee8675;
}
.indie-apricot .lines::after, .indie-apricot .lines::before {
background-color: #ee8675;
}
.indie-apricot .highlighted {
background-color: #ee8675;
}
.indie-apricot .highlighted.alt-color {
background-color: #fef3ee;
color: #2a333c !important;
}
.indie-apricot .indie-combo {
border-color: #fef3ee;
}
.indie-apricot .indie-tag {
background-color: #fef3ee;
}
.indie-trendypink {
color: #8d5a97;
}
.section .indie-trendypink .widget-featured .indie-content {
background-color: #8d5a97;
}
.section .indie-trendypink .widget-featured .btn-indie {
background-color: #2a333c;
color: #8d5a97;
}
.indie-trendypink.section .widget-featured .indie-content {
background-color: #8d5a97;
}
.indie-trendypink.section .widget-featured .btn-indie {
background-color: #2a333c;
color: #8d5a97;
}
.indie-trendypink.indie-widget.widget-featured .indie-content {
background-color: #8d5a97;
}
.indie-trendypink.indie-widget.widget-featured .btn-indie {
background-color: #2a333c;
color: #8d5a97;
}
.indie-trendypink.indie-widget :not(pre) > code[class*="language-"], .indie-trendypink.indie-widget pre[class*="language-"] {
color: #8d5a97;
}
.indie-trendypink.indie-widget code {
color: #8d5a97;
}
.indie-trendypink .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #8d5a97;
}
.indie-trendypink .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #875691;
}
.widget-featured .indie-trendypink .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple), .indie-trendypink .btn-indie.inverse:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
color: #8d5a97;
background-color: #2a333c;
}
.widget-featured .indie-trendypink .btn-indie:hover, .indie-trendypink .btn-indie.inverse:hover {
background-color: #262e36;
}
.indie-trendypink .indie-navigation a {
color: #8d5a97;
}
.indie-trendypink .indie-navigation > li:hover > a, .indie-trendypink .indie-navigation > li.active > a, .indie-trendypink .indie-navigation > li.active > a:hover, .indie-trendypink .indie-navigation > li.active > a:focus {
color: #8d5a97;
border: 2px solid #8d5a97;
}
.indie-trendypink .indie-navigation > li > a:focus {
color: #8d5a97;
}
.indie-trendypink .section[class*="section-"] {
background-color: #8d5a97;
color: #2a333c;
}
.indie-trendypink .section[class*="section-"] .indie-widget {
border-color: #2a333c;
}
.indie-trendypink .section[class*="section-"] .indie-header {
border-bottom-color: currentColor;
}
.indie-trendypink .section[class*="section-"] .indie-title:after {
background-color: currentColor;
}
.indie-trendypink .section[class*="section-"] .indie-header-img {
background-color: #8d5a97;
}
.indie-trendypink .section[class*="section-"] .indie-svg {
color: #2a333c;
}
.indie-trendypink .section[class*="section-"] .btn-indie {
background-color: #2a333c;
color: #8d5a97;
}
.indie-trendypink .section[class*="section-"] .widget-featured .indie-content {
color: #8d5a97;
}
.indie-trendypink .section[class*="section-"] .widget-featured .btn-indie {
background-color: #8d5a97;
color: #2a333c;
}
.indie-trendypink .section[class*="section-"] :not(pre) > code[class*="language-"], .indie-trendypink .section[class*="section-"] pre[class*="language-"] {
color: #8d5a97;
}
.indie-trendypink .section[class*="section-"] code {
color: #8d5a97;
}
.indie-trendypink .section:not([class*="section-"]) .widget-featured .indie-content {
background-color: #8d5a97;
}
.indie-trendypink .section:not([class*="section-"]) .widget-featured .btn-indie {
background-color: #2a333c;
color: #8d5a97;
}
.indie-trendypink .indie-venue .indie-bg {
background-color: #8d5a97;
}
.indie-trendypink blockquote footer {
color: #8d5a97;
}
.indie-trendypink blockquote footer::before {
background-color: #8d5a97;
}
.indie-trendypink .separator.card {
color: #8d5a97;
border: 2px solid;
}
.indie-trendypink .indie-header {
border-bottom: 2px solid #8d5a97;
}
.indie-trendypink .indie-widget {
border: 2px solid;
}
.indie-trendypink .indie-controls button {
border-left-color: #8d5a97;
}
.indie-trendypink .indie-controls path {
stroke: #8d5a97;
}
.indie-trendypink .indie-title::after {
background-color: #8d5a97;
}
.indie-trendypink .indie-event-img {
background-color: #8d5a97;
}
.indie-trendypink .indie-featured-img {
background-color: #8d5a97;
}
.indie-trendypink .indie-featured:not(:nth-of-type(3n))::after {
background-color: #8d5a97;
}
.indie-trendypink .indie-featured h4 {
color: #8d5a97;
}
.indie-trendypink .indie-featured.hoverable:hover h4, .indie-trendypink .indie-featured.hoverable:hover p {
color: #d8a2d7;
}
.indie-trendypink .indie-featured.hoverable:hover .btn-rounded {
background-color: #d8a2d7;
}
.indie-trendypink .indie-txt-cont::after, .indie-trendypink .indie-h::after {
background-color: #8d5a97;
}
.indie-trendypink .btn-rounded {
background-color: #8d5a97;
}
.indie-trendypink .indie-label.inverse {
background-color: #8d5a97;
}
.indie-trendypink .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #d8a2d7;
}
.indie-trendypink .indie-svg {
color: #8d5a97;
}
.indie-trendypink .lines {
background-color: #8d5a97;
}
.indie-trendypink .lines::after, .indie-trendypink .lines::before {
background-color: #8d5a97;
}
.indie-trendypink .highlighted {
background-color: #8d5a97;
}
.indie-trendypink .highlighted.alt-color {
background-color: #d8a2d7;
color: #2a333c !important;
}
.indie-trendypink .indie-combo {
border-color: #d8a2d7;
}
.indie-trendypink .indie-tag {
background-color: #d8a2d7;
}
.indie-turquoiseblue {
color: #59eecc;
}
.section .indie-turquoiseblue .widget-featured .indie-content {
background-color: #59eecc;
}
.section .indie-turquoiseblue .widget-featured .btn-indie {
background-color: #2a333c;
color: #59eecc;
}
.indie-turquoiseblue.section .widget-featured .indie-content {
background-color: #59eecc;
}
.indie-turquoiseblue.section .widget-featured .btn-indie {
background-color: #2a333c;
color: #59eecc;
}
.indie-turquoiseblue.indie-widget.widget-featured .indie-content {
background-color: #59eecc;
}
.indie-turquoiseblue.indie-widget.widget-featured .btn-indie {
background-color: #2a333c;
color: #59eecc;
}
.indie-turquoiseblue.indie-widget :not(pre) > code[class*="language-"], .indie-turquoiseblue.indie-widget pre[class*="language-"] {
color: #59eecc;
}
.indie-turquoiseblue.indie-widget code {
color: #59eecc;
}
.indie-turquoiseblue .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #59eecc;
}
.indie-turquoiseblue .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #50edc9;
}
.widget-featured .indie-turquoiseblue .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple), .indie-turquoiseblue .btn-indie.inverse:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
color: #59eecc;
background-color: #2a333c;
}
.widget-featured .indie-turquoiseblue .btn-indie:hover, .indie-turquoiseblue .btn-indie.inverse:hover {
background-color: #262e36;
}
.indie-turquoiseblue .indie-navigation a {
color: #59eecc;
}
.indie-turquoiseblue .indie-navigation > li:hover > a, .indie-turquoiseblue .indie-navigation > li.active > a, .indie-turquoiseblue .indie-navigation > li.active > a:hover, .indie-turquoiseblue .indie-navigation > li.active > a:focus {
color: #59eecc;
border: 2px solid #59eecc;
}
.indie-turquoiseblue .indie-navigation > li > a:focus {
color: #59eecc;
}
.indie-turquoiseblue .section[class*="section-"] {
background-color: #59eecc;
color: #2a333c;
}
.indie-turquoiseblue .section[class*="section-"] .indie-widget {
border-color: #2a333c;
}
.indie-turquoiseblue .section[class*="section-"] .indie-header {
border-bottom-color: currentColor;
}
.indie-turquoiseblue .section[class*="section-"] .indie-title:after {
background-color: currentColor;
}
.indie-turquoiseblue .section[class*="section-"] .indie-header-img {
background-color: #59eecc;
}
.indie-turquoiseblue .section[class*="section-"] .indie-svg {
color: #2a333c;
}
.indie-turquoiseblue .section[class*="section-"] .btn-indie {
background-color: #2a333c;
color: #59eecc;
}
.indie-turquoiseblue .section[class*="section-"] .widget-featured .indie-content {
color: #59eecc;
}
.indie-turquoiseblue .section[class*="section-"] .widget-featured .btn-indie {
background-color: #59eecc;
color: #2a333c;
}
.indie-turquoiseblue .section[class*="section-"] :not(pre) > code[class*="language-"], .indie-turquoiseblue .section[class*="section-"] pre[class*="language-"] {
color: #59eecc;
}
.indie-turquoiseblue .section[class*="section-"] code {
color: #59eecc;
}
.indie-turquoiseblue .section:not([class*="section-"]) .widget-featured .indie-content {
background-color: #59eecc;
}
.indie-turquoiseblue .section:not([class*="section-"]) .widget-featured .btn-indie {
background-color: #2a333c;
color: #59eecc;
}
.indie-turquoiseblue .indie-venue .indie-bg {
background-color: #59eecc;
}
.indie-turquoiseblue blockquote footer {
color: #59eecc;
}
.indie-turquoiseblue blockquote footer::before {
background-color: #59eecc;
}
.indie-turquoiseblue .separator.card {
color: #59eecc;
border: 2px solid;
}
.indie-turquoiseblue .indie-header {
border-bottom: 2px solid #59eecc;
}
.indie-turquoiseblue .indie-widget {
border: 2px solid;
}
.indie-turquoiseblue .indie-controls button {
border-left-color: #59eecc;
}
.indie-turquoiseblue .indie-controls path {
stroke: #59eecc;
}
.indie-turquoiseblue .indie-title::after {
background-color: #59eecc;
}
.indie-turquoiseblue .indie-event-img {
background-color: #59eecc;
}
.indie-turquoiseblue .indie-featured-img {
background-color: #59eecc;
}
.indie-turquoiseblue .indie-featured:not(:nth-of-type(3n))::after {
background-color: #59eecc;
}
.indie-turquoiseblue .indie-featured h4 {
color: #59eecc;
}
.indie-turquoiseblue .indie-featured.hoverable:hover h4, .indie-turquoiseblue .indie-featured.hoverable:hover p {
color: #d2fefc;
}
.indie-turquoiseblue .indie-featured.hoverable:hover .btn-rounded {
background-color: #d2fefc;
}
.indie-turquoiseblue .indie-txt-cont::after, .indie-turquoiseblue .indie-h::after {
background-color: #59eecc;
}
.indie-turquoiseblue .btn-rounded {
background-color: #59eecc;
}
.indie-turquoiseblue .indie-label.inverse {
background-color: #59eecc;
}
.indie-turquoiseblue .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #d2fefc;
}
.indie-turquoiseblue .indie-svg {
color: #59eecc;
}
.indie-turquoiseblue .lines {
background-color: #59eecc;
}
.indie-turquoiseblue .lines::after, .indie-turquoiseblue .lines::before {
background-color: #59eecc;
}
.indie-turquoiseblue .highlighted {
background-color: #59eecc;
}
.indie-turquoiseblue .highlighted.alt-color {
background-color: #d2fefc;
color: #2a333c !important;
}
.indie-turquoiseblue .indie-combo {
border-color: #d2fefc;
}
.indie-turquoiseblue .indie-tag {
background-color: #d2fefc;
}
.indie-montecarlo {
color: #7dcac2;
}
.section .indie-montecarlo .widget-featured .indie-content {
background-color: #7dcac2;
}
.section .indie-montecarlo .widget-featured .btn-indie {
background-color: #2a333c;
color: #7dcac2;
}
.indie-montecarlo.section .widget-featured .indie-content {
background-color: #7dcac2;
}
.indie-montecarlo.section .widget-featured .btn-indie {
background-color: #2a333c;
color: #7dcac2;
}
.indie-montecarlo.indie-widget.widget-featured .indie-content {
background-color: #7dcac2;
}
.indie-montecarlo.indie-widget.widget-featured .btn-indie {
background-color: #2a333c;
color: #7dcac2;
}
.indie-montecarlo.indie-widget :not(pre) > code[class*="language-"], .indie-montecarlo.indie-widget pre[class*="language-"] {
color: #7dcac2;
}
.indie-montecarlo.indie-widget code {
color: #7dcac2;
}
.indie-montecarlo .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #7dcac2;
}
.indie-montecarlo .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #76c7bf;
}
.widget-featured .indie-montecarlo .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple), .indie-montecarlo .btn-indie.inverse:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
color: #7dcac2;
background-color: #2a333c;
}
.widget-featured .indie-montecarlo .btn-indie:hover, .indie-montecarlo .btn-indie.inverse:hover {
background-color: #262e36;
}
.indie-montecarlo .indie-navigation a {
color: #7dcac2;
}
.indie-montecarlo .indie-navigation > li:hover > a, .indie-montecarlo .indie-navigation > li.active > a, .indie-montecarlo .indie-navigation > li.active > a:hover, .indie-montecarlo .indie-navigation > li.active > a:focus {
color: #7dcac2;
border: 2px solid #7dcac2;
}
.indie-montecarlo .indie-navigation > li > a:focus {
color: #7dcac2;
}
.indie-montecarlo .section[class*="section-"] {
background-color: #7dcac2;
color: #2a333c;
}
.indie-montecarlo .section[class*="section-"] .indie-widget {
border-color: #2a333c;
}
.indie-montecarlo .section[class*="section-"] .indie-header {
border-bottom-color: currentColor;
}
.indie-montecarlo .section[class*="section-"] .indie-title:after {
background-color: currentColor;
}
.indie-montecarlo .section[class*="section-"] .indie-header-img {
background-color: #7dcac2;
}
.indie-montecarlo .section[class*="section-"] .indie-svg {
color: #2a333c;
}
.indie-montecarlo .section[class*="section-"] .btn-indie {
background-color: #2a333c;
color: #7dcac2;
}
.indie-montecarlo .section[class*="section-"] .widget-featured .indie-content {
color: #7dcac2;
}
.indie-montecarlo .section[class*="section-"] .widget-featured .btn-indie {
background-color: #7dcac2;
color: #2a333c;
}
.indie-montecarlo .section[class*="section-"] :not(pre) > code[class*="language-"], .indie-montecarlo .section[class*="section-"] pre[class*="language-"] {
color: #7dcac2;
}
.indie-montecarlo .section[class*="section-"] code {
color: #7dcac2;
}
.indie-montecarlo .section:not([class*="section-"]) .widget-featured .indie-content {
background-color: #7dcac2;
}
.indie-montecarlo .section:not([class*="section-"]) .widget-featured .btn-indie {
background-color: #2a333c;
color: #7dcac2;
}
.indie-montecarlo .indie-venue .indie-bg {
background-color: #7dcac2;
}
.indie-montecarlo blockquote footer {
color: #7dcac2;
}
.indie-montecarlo blockquote footer::before {
background-color: #7dcac2;
}
.indie-montecarlo .separator.card {
color: #7dcac2;
border: 2px solid;
}
.indie-montecarlo .indie-header {
border-bottom: 2px solid #7dcac2;
}
.indie-montecarlo .indie-widget {
border: 2px solid;
}
.indie-montecarlo .indie-controls button {
border-left-color: #7dcac2;
}
.indie-montecarlo .indie-controls path {
stroke: #7dcac2;
}
.indie-montecarlo .indie-title::after {
background-color: #7dcac2;
}
.indie-montecarlo .indie-event-img {
background-color: #7dcac2;
}
.indie-montecarlo .indie-featured-img {
background-color: #7dcac2;
}
.indie-montecarlo .indie-featured:not(:nth-of-type(3n))::after {
background-color: #7dcac2;
}
.indie-montecarlo .indie-featured h4 {
color: #7dcac2;
}
.indie-montecarlo .indie-featured.hoverable:hover h4, .indie-montecarlo .indie-featured.hoverable:hover p {
color: #dbf3f5;
}
.indie-montecarlo .indie-featured.hoverable:hover .btn-rounded {
background-color: #dbf3f5;
}
.indie-montecarlo .indie-txt-cont::after, .indie-montecarlo .indie-h::after {
background-color: #7dcac2;
}
.indie-montecarlo .btn-rounded {
background-color: #7dcac2;
}
.indie-montecarlo .indie-label.inverse {
background-color: #7dcac2;
}
.indie-montecarlo .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #dbf3f5;
}
.indie-montecarlo .indie-svg {
color: #7dcac2;
}
.indie-montecarlo .lines {
background-color: #7dcac2;
}
.indie-montecarlo .lines::after, .indie-montecarlo .lines::before {
background-color: #7dcac2;
}
.indie-montecarlo .highlighted {
background-color: #7dcac2;
}
.indie-montecarlo .highlighted.alt-color {
background-color: #dbf3f5;
color: #2a333c !important;
}
.indie-montecarlo .indie-combo {
border-color: #dbf3f5;
}
.indie-montecarlo .indie-tag {
background-color: #dbf3f5;
}
.indie-chenin {
color: #e1cd76;
}
.section .indie-chenin .widget-featured .indie-content {
background-color: #e1cd76;
}
.section .indie-chenin .widget-featured .btn-indie {
background-color: #2a333c;
color: #e1cd76;
}
.indie-chenin.section .widget-featured .indie-content {
background-color: #e1cd76;
}
.indie-chenin.section .widget-featured .btn-indie {
background-color: #2a333c;
color: #e1cd76;
}
.indie-chenin.indie-widget.widget-featured .indie-content {
background-color: #e1cd76;
}
.indie-chenin.indie-widget.widget-featured .btn-indie {
background-color: #2a333c;
color: #e1cd76;
}
.indie-chenin.indie-widget :not(pre) > code[class*="language-"], .indie-chenin.indie-widget pre[class*="language-"] {
color: #e1cd76;
}
.indie-chenin.indie-widget code {
color: #e1cd76;
}
.indie-chenin .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #e1cd76;
}
.indie-chenin .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #dfca6e;
}
.widget-featured .indie-chenin .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple), .indie-chenin .btn-indie.inverse:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
color: #e1cd76;
background-color: #2a333c;
}
.widget-featured .indie-chenin .btn-indie:hover, .indie-chenin .btn-indie.inverse:hover {
background-color: #262e36;
}
.indie-chenin .indie-navigation a {
color: #e1cd76;
}
.indie-chenin .indie-navigation > li:hover > a, .indie-chenin .indie-navigation > li.active > a, .indie-chenin .indie-navigation > li.active > a:hover, .indie-chenin .indie-navigation > li.active > a:focus {
color: #e1cd76;
border: 2px solid #e1cd76;
}
.indie-chenin .indie-navigation > li > a:focus {
color: #e1cd76;
}
.indie-chenin .section[class*="section-"] {
background-color: #e1cd76;
color: #2a333c;
}
.indie-chenin .section[class*="section-"] .indie-widget {
border-color: #2a333c;
}
.indie-chenin .section[class*="section-"] .indie-header {
border-bottom-color: currentColor;
}
.indie-chenin .section[class*="section-"] .indie-title:after {
background-color: currentColor;
}
.indie-chenin .section[class*="section-"] .indie-header-img {
background-color: #e1cd76;
}
.indie-chenin .section[class*="section-"] .indie-svg {
color: #2a333c;
}
.indie-chenin .section[class*="section-"] .btn-indie {
background-color: #2a333c;
color: #e1cd76;
}
.indie-chenin .section[class*="section-"] .widget-featured .indie-content {
color: #e1cd76;
}
.indie-chenin .section[class*="section-"] .widget-featured .btn-indie {
background-color: #e1cd76;
color: #2a333c;
}
.indie-chenin .section[class*="section-"] :not(pre) > code[class*="language-"], .indie-chenin .section[class*="section-"] pre[class*="language-"] {
color: #e1cd76;
}
.indie-chenin .section[class*="section-"] code {
color: #e1cd76;
}
.indie-chenin .section:not([class*="section-"]) .widget-featured .indie-content {
background-color: #e1cd76;
}
.indie-chenin .section:not([class*="section-"]) .widget-featured .btn-indie {
background-color: #2a333c;
color: #e1cd76;
}
.indie-chenin .indie-venue .indie-bg {
background-color: #e1cd76;
}
.indie-chenin blockquote footer {
color: #e1cd76;
}
.indie-chenin blockquote footer::before {
background-color: #e1cd76;
}
.indie-chenin .separator.card {
color: #e1cd76;
border: 2px solid;
}
.indie-chenin .indie-header {
border-bottom: 2px solid #e1cd76;
}
.indie-chenin .indie-widget {
border: 2px solid;
}
.indie-chenin .indie-controls button {
border-left-color: #e1cd76;
}
.indie-chenin .indie-controls path {
stroke: #e1cd76;
}
.indie-chenin .indie-title::after {
background-color: #e1cd76;
}
.indie-chenin .indie-event-img {
background-color: #e1cd76;
}
.indie-chenin .indie-featured-img {
background-color: #e1cd76;
}
.indie-chenin .indie-featured:not(:nth-of-type(3n))::after {
background-color: #e1cd76;
}
.indie-chenin .indie-featured h4 {
color: #e1cd76;
}
.indie-chenin .indie-featured.hoverable:hover h4, .indie-chenin .indie-featured.hoverable:hover p {
color: #fcfce4;
}
.indie-chenin .indie-featured.hoverable:hover .btn-rounded {
background-color: #fcfce4;
}
.indie-chenin .indie-txt-cont::after, .indie-chenin .indie-h::after {
background-color: #e1cd76;
}
.indie-chenin .btn-rounded {
background-color: #e1cd76;
}
.indie-chenin .indie-label.inverse {
background-color: #e1cd76;
}
.indie-chenin .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #fcfce4;
}
.indie-chenin .indie-svg {
color: #e1cd76;
}
.indie-chenin .lines {
background-color: #e1cd76;
}
.indie-chenin .lines::after, .indie-chenin .lines::before {
background-color: #e1cd76;
}
.indie-chenin .highlighted {
background-color: #e1cd76;
}
.indie-chenin .highlighted.alt-color {
background-color: #fcfce4;
color: #2a333c !important;
}
.indie-chenin .indie-combo {
border-color: #fcfce4;
}
.indie-chenin .indie-tag {
background-color: #fcfce4;
}
.indie-mediumpurple {
color: #6e71df;
}
.section .indie-mediumpurple .widget-featured .indie-content {
background-color: #6e71df;
}
.section .indie-mediumpurple .widget-featured .btn-indie {
background-color: #2a333c;
color: #6e71df;
}
.indie-mediumpurple.section .widget-featured .indie-content {
background-color: #6e71df;
}
.indie-mediumpurple.section .widget-featured .btn-indie {
background-color: #2a333c;
color: #6e71df;
}
.indie-mediumpurple.indie-widget.widget-featured .indie-content {
background-color: #6e71df;
}
.indie-mediumpurple.indie-widget.widget-featured .btn-indie {
background-color: #2a333c;
color: #6e71df;
}
.indie-mediumpurple.indie-widget :not(pre) > code[class*="language-"], .indie-mediumpurple.indie-widget pre[class*="language-"] {
color: #6e71df;
}
.indie-mediumpurple.indie-widget code {
color: #6e71df;
}
.indie-mediumpurple .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #6e71df;
}
.indie-mediumpurple .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #6669dd;
}
.widget-featured .indie-mediumpurple .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple), .indie-mediumpurple .btn-indie.inverse:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
color: #6e71df;
background-color: #2a333c;
}
.widget-featured .indie-mediumpurple .btn-indie:hover, .indie-mediumpurple .btn-indie.inverse:hover {
background-color: #262e36;
}
.indie-mediumpurple .indie-navigation a {
color: #6e71df;
}
.indie-mediumpurple .indie-navigation > li:hover > a, .indie-mediumpurple .indie-navigation > li.active > a, .indie-mediumpurple .indie-navigation > li.active > a:hover, .indie-mediumpurple .indie-navigation > li.active > a:focus {
color: #6e71df;
border: 2px solid #6e71df;
}
.indie-mediumpurple .indie-navigation > li > a:focus {
color: #6e71df;
}
.indie-mediumpurple .section[class*="section-"] {
background-color: #6e71df;
color: #2a333c;
}
.indie-mediumpurple .section[class*="section-"] .indie-widget {
border-color: #2a333c;
}
.indie-mediumpurple .section[class*="section-"] .indie-header {
border-bottom-color: currentColor;
}
.indie-mediumpurple .section[class*="section-"] .indie-title:after {
background-color: currentColor;
}
.indie-mediumpurple .section[class*="section-"] .indie-header-img {
background-color: #6e71df;
}
.indie-mediumpurple .section[class*="section-"] .indie-svg {
color: #2a333c;
}
.indie-mediumpurple .section[class*="section-"] .btn-indie {
background-color: #2a333c;
color: #6e71df;
}
.indie-mediumpurple .section[class*="section-"] .widget-featured .indie-content {
color: #6e71df;
}
.indie-mediumpurple .section[class*="section-"] .widget-featured .btn-indie {
background-color: #6e71df;
color: #2a333c;
}
.indie-mediumpurple .section[class*="section-"] :not(pre) > code[class*="language-"], .indie-mediumpurple .section[class*="section-"] pre[class*="language-"] {
color: #6e71df;
}
.indie-mediumpurple .section[class*="section-"] code {
color: #6e71df;
}
.indie-mediumpurple .section:not([class*="section-"]) .widget-featured .indie-content {
background-color: #6e71df;
}
.indie-mediumpurple .section:not([class*="section-"]) .widget-featured .btn-indie {
background-color: #2a333c;
color: #6e71df;
}
.indie-mediumpurple .indie-venue .indie-bg {
background-color: #6e71df;
}
.indie-mediumpurple blockquote footer {
color: #6e71df;
}
.indie-mediumpurple blockquote footer::before {
background-color: #6e71df;
}
.indie-mediumpurple .separator.card {
color: #6e71df;
border: 2px solid;
}
.indie-mediumpurple .indie-header {
border-bottom: 2px solid #6e71df;
}
.indie-mediumpurple .indie-widget {
border: 2px solid;
}
.indie-mediumpurple .indie-controls button {
border-left-color: #6e71df;
}
.indie-mediumpurple .indie-controls path {
stroke: #6e71df;
}
.indie-mediumpurple .indie-title::after {
background-color: #6e71df;
}
.indie-mediumpurple .indie-event-img {
background-color: #6e71df;
}
.indie-mediumpurple .indie-featured-img {
background-color: #6e71df;
}
.indie-mediumpurple .indie-featured:not(:nth-of-type(3n))::after {
background-color: #6e71df;
}
.indie-mediumpurple .indie-featured h4 {
color: #6e71df;
}
.indie-mediumpurple .indie-featured.hoverable:hover h4, .indie-mediumpurple .indie-featured.hoverable:hover p {
color: #e0dbfb;
}
.indie-mediumpurple .indie-featured.hoverable:hover .btn-rounded {
background-color: #e0dbfb;
}
.indie-mediumpurple .indie-txt-cont::after, .indie-mediumpurple .indie-h::after {
background-color: #6e71df;
}
.indie-mediumpurple .btn-rounded {
background-color: #6e71df;
}
.indie-mediumpurple .indie-label.inverse {
background-color: #6e71df;
}
.indie-mediumpurple .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #e0dbfb;
}
.indie-mediumpurple .indie-svg {
color: #6e71df;
}
.indie-mediumpurple .lines {
background-color: #6e71df;
}
.indie-mediumpurple .lines::after, .indie-mediumpurple .lines::before {
background-color: #6e71df;
}
.indie-mediumpurple .highlighted {
background-color: #6e71df;
}
.indie-mediumpurple .highlighted.alt-color {
background-color: #e0dbfb;
color: #2a333c !important;
}
.indie-mediumpurple .indie-combo {
border-color: #e0dbfb;
}
.indie-mediumpurple .indie-tag {
background-color: #e0dbfb;
}
.indie-dark {
color: #b7b7b7;
}
.section .indie-dark .widget-featured .indie-content {
background-color: #2a333c;
}
.section .indie-dark .widget-featured .btn-indie {
background-color: #2a333c;
color: #2a333c;
}
.indie-dark.section .widget-featured .indie-content {
background-color: #b7b7b7;
}
.indie-dark.section .widget-featured .btn-indie {
background-color: #2a333c;
color: #2a333c;
}
.indie-dark.indie-widget.widget-featured .indie-content {
background-color: #2a333c;
}
.indie-dark.indie-widget.widget-featured .btn-indie {
background-color: #2a333c;
color: #2a333c;
}
.indie-dark.indie-widget :not(pre) > code[class*="language-"], .indie-dark.indie-widget pre[class*="language-"] {
color: #2a333c;
}
.indie-dark.indie-widget code {
color: #2a333c;
}
.indie-dark .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
background-color: #2a333c;
}
.indie-dark .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple):hover {
background-color: #262e36;
}
.widget-featured .indie-dark .btn-indie:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple), .indie-dark .btn-indie.inverse:not(.btn-red):not(.btn-green):not(.btn-white):not(.btn-light-grey):not(.btn-portage):not(.btn-apricot):not(.btn-trendypink):not(.btn-turquoiseblue):not(.btn-montecarlo):not(.btn-chenin):not(.btn-mediumpurple) {
color: #2a333c;
background-color: #2a333c;
}
.widget-featured .indie-dark .btn-indie:hover, .indie-dark .btn-indie.inverse:hover {
background-color: #262e36;
}
.indie-dark .indie-navigation a {
color: #2a333c;
}
.indie-dark .indie-navigation > li:hover > a, .indie-dark .indie-navigation > li.active > a, .indie-dark .indie-navigation > li.active > a:hover, .indie-dark .indie-navigation > li.active > a:focus {
color: #2a333c;
border: 2px solid #2a333c;
}
.indie-dark .indie-navigation > li > a:focus {
color: #2a333c;
}
.indie-dark .section[class*="section-"] {
background-color: #2a333c;
color: #2a333c;
}
.indie-dark .section[class*="section-"] .indie-widget {
border-color: #2a333c;
}
.indie-dark .section[class*="section-"] .indie-header {
border-bottom-color: currentColor;
}
.indie-dark .section[class*="section-"] .indie-title:after {
background-color: currentColor;
}
.indie-dark .section[class*="section-"] .indie-header-img {
background-color: #2a333c;
}
.indie-dark .section[class*="section-"] .indie-svg {
color: #2a333c;
}
.indie-dark .section[class*="section-"] .btn-indie {
background-color: #2a333c;
color: #2a333c;
}
.indie-dark .section[class*="section-"] .widget-featured .indie-content {
color: #2a333c;
}
.indie-dark .section[class*="section-"] .widget-featured .btn-indie {
background-color: #2a333c;
color: #2a333c;
}
.indie-dark .section[class*="section-"] :not(pre) > code[class*="language-"], .indie-dark .section[class*="section-"] pre[class*="language-"] {
color: #2a333c;
}
.indie-dark .section[class*="section-"] code {
color: #2a333c;
}
.indie-dark .section:not([class*="section-"]) .widget-featured .indie-content {
background-color: #2a333c;
}
.indie-dark .section:not([class*="section-"]) .widget-featured .btn-indie {
background-color: #2a333c;
color: #2a333c;
}
.indie-dark .indie-venue .indie-bg {
background-color: #2a333c;
}
.indie-dark blockquote footer {
color: #2a333c;
}
.indie-dark blockquote footer::before {
background-color: #2a333c;
}
.indie-dark .separator.card {
color: #b7b7b7;
border: 2px solid;
}
.indie-dark .indie-header {
border-bottom: 2px solid #2a333c;
}
.indie-dark .indie-widget {
border: 2px solid;
}
.indie-dark .indie-controls button {
border-left-color: #2a333c;
}
.indie-dark .indie-controls path {
stroke: #2a333c;
}
.indie-dark .indie-title::after {
background-color: #2a333c;
}
.indie-dark .indie-event-img {
background-color: #2a333c;
}
.indie-dark .indie-featured-img {
background-color: #2a333c;
}
.indie-dark .indie-featured:not(:nth-of-type(3n))::after {
background-color: #2a333c;
}
.indie-dark .indie-featured h4 {
color: #2a333c;
}
.indie-dark .indie-featured.hoverable:hover h4, .indie-dark .indie-featured.hoverable:hover p {
color: #50699f;
}
.indie-dark .indie-featured.hoverable:hover .btn-rounded {
background-color: #50699f;
}
.indie-dark .indie-txt-cont::after, .indie-dark .indie-h::after {
background-color: #2a333c;
}
.indie-dark .btn-rounded {
background-color: #2a333c;
}
.indie-dark .indie-label {
color: #b7b7b7;
}
.indie-dark .indie-label.inverse {
background-color: #2a333c;
background-color: #b7b7b7;
color: #2a333c;
}
.indie-dark .indie-label.alt-color {
border: none;
color: #2a333c;
background-color: #50699f;
}
.indie-dark .indie-svg {
color: #b7b7b7;
}
.indie-dark .lines {
background-color: #2a333c;
}
.indie-dark .lines::after, .indie-dark .lines::before {
background-color: #2a333c;
}
.indie-dark .highlighted {
background-color: #b7b7b7;
}
.indie-dark .highlighted.alt-color {
background-color: #50699f;
color: #2a333c !important;
}
.indie-dark .indie-combo {
border-color: #50699f;
}
.indie-dark .indie-tag {
background-color: #50699f;
}
/*
**
** Generic components Colors
**
*/
.color-red {
color: #c05b5b;
}
.color-red.indie-h:after {
background-color: #c05b5b !important;
}
.color-green {
color: #3D969A;
}
.color-green.indie-h:after {
background-color: #3D969A !important;
}
.color-white {
color: white;
}
.color-white.indie-h:after {
background-color: white !important;
}
.color-light-grey {
color: #b7b7b7;
}
.color-light-grey.indie-h:after {
background-color: #b7b7b7 !important;
}
.color-portage {
color: #74aae8;
}
.color-portage.indie-h:after {
background-color: #74aae8 !important;
}
.color-apricot {
color: #ee8675;
}
.color-apricot.indie-h:after {
background-color: #ee8675 !important;
}
.color-trendypink {
color: #8d5a97;
}
.color-trendypink.indie-h:after {
background-color: #8d5a97 !important;
}
.color-turquoiseblue {
color: #59eecc;
}
.color-turquoiseblue.indie-h:after {
background-color: #59eecc !important;
}
.color-montecarlo {
color: #7dcac2;
}
.color-montecarlo.indie-h:after {
background-color: #7dcac2 !important;
}
.color-chenin {
color: #e1cd76;
}
.color-chenin.indie-h:after {
background-color: #e1cd76 !important;
}
.color-mediumpurple {
color: #6e71df;
}
.color-mediumpurple.indie-h:after {
background-color: #6e71df !important;
}
.color-dark {
color: #2a333c;
}
.color-dark.indie-h:after {
background-color: #2a333c !important;
}
.highlighted.alt-color-red {
background-color: #edc1b7;
color: #2a333c !important;
}
.highlighted.alt-color-green {
background-color: #82c9de;
color: #2a333c !important;
}
.highlighted.alt-color-white {
background-color: white;
color: #2a333c !important;
}
.highlighted.alt-color-light-grey {
background-color: #fcfbfb;
color: #2a333c !important;
}
.highlighted.alt-color-portage {
background-color: #e8eefd;
color: #2a333c !important;
}
.highlighted.alt-color-apricot {
background-color: #fef3ee;
color: #2a333c !important;
}
.highlighted.alt-color-trendypink {
background-color: #d8a2d7;
color: #2a333c !important;
}
.highlighted.alt-color-turquoiseblue {
background-color: #d2fefc;
color: #2a333c !important;
}
.highlighted.alt-color-montecarlo {
background-color: #dbf3f5;
color: #2a333c !important;
}
.highlighted.alt-color-chenin {
background-color: #fcfce4;
color: #2a333c !important;
}
.highlighted.alt-color-mediumpurple {
background-color: #e0dbfb;
color: #2a333c !important;
}
.highlighted.alt-color-dark {
background-color: #50699f;
color: #2a333c !important;
}
.indie-label.inverse.color-red {
background-color: #c05b5b;
}
.indie-label.inverse.color-green {
background-color: #3D969A;
}
.indie-label.inverse.color-white {
background-color: white;
}
.indie-label.inverse.color-light-grey {
background-color: #b7b7b7;
}
.indie-label.inverse.color-portage {
background-color: #74aae8;
}
.indie-label.inverse.color-apricot {
background-color: #ee8675;
}
.indie-label.inverse.color-trendypink {
background-color: #8d5a97;
}
.indie-label.inverse.color-turquoiseblue {
background-color: #59eecc;
}
.indie-label.inverse.color-montecarlo {
background-color: #7dcac2;
}
.indie-label.inverse.color-chenin {
background-color: #e1cd76;
}
.indie-label.inverse.color-mediumpurple {
background-color: #6e71df;
}
.indie-label.inverse.color-dark {
background-color: #2a333c;
}
.indie-label.alt-color-red {
border: none;
background-color: #edc1b7;
color: #2a333c !important;
}
.indie-label.alt-color-green {
border: none;
background-color: #82c9de;
color: #2a333c !important;
}
.indie-label.alt-color-white {
border: none;
background-color: white;
color: #2a333c !important;
}
.indie-label.alt-color-light-grey {
border: none;
background-color: #fcfbfb;
color: #2a333c !important;
}
.indie-label.alt-color-portage {
border: none;
background-color: #e8eefd;
color: #2a333c !important;
}
.indie-label.alt-color-apricot {
border: none;
background-color: #fef3ee;
color: #2a333c !important;
}
.indie-label.alt-color-trendypink {
border: none;
background-color: #d8a2d7;
color: #2a333c !important;
}
.indie-label.alt-color-turquoiseblue {
border: none;
background-color: #d2fefc;
color: #2a333c !important;
}
.indie-label.alt-color-montecarlo {
border: none;
background-color: #dbf3f5;
color: #2a333c !important;
}
.indie-label.alt-color-chenin {
border: none;
background-color: #fcfce4;
color: #2a333c !important;
}
.indie-label.alt-color-mediumpurple {
border: none;
background-color: #e0dbfb;
color: #2a333c !important;
}
.indie-label.alt-color-dark {
border: none;
background-color: #50699f;
color: #2a333c !important;
}
.btn-red {
background-color: #c05b5b;
color: #2a333c;
}
.btn-red:hover {
background-color: #bd5454;
}
.widget-featured .btn-red, .btn-red.inverse {
background-color: #2a333c;
color: #c05b5b;
border: 2px solid;
}
.widget-featured .btn-red:hover, .btn-red.inverse:hover {
background-color: #262e36;
}
.btn-green {
background-color: #3D969A;
color: #2a333c;
}
.btn-green:hover {
background-color: #3a8f93;
}
.widget-featured .btn-green, .btn-green.inverse {
background-color: #2a333c;
color: #3D969A;
border: 2px solid;
}
.widget-featured .btn-green:hover, .btn-green.inverse:hover {
background-color: #262e36;
}
.btn-white {
background-color: white;
color: #2a333c;
}
.btn-white:hover {
background-color: #fafafa;
}
.widget-featured .btn-white, .btn-white.inverse {
background-color: #2a333c;
color: white;
border: 2px solid;
}
.widget-featured .btn-white:hover, .btn-white.inverse:hover {
background-color: #262e36;
}
.btn-light-grey {
background-color: #b7b7b7;
color: #2a333c;
}
.btn-light-grey:hover {
background-color: #b2b2b2;
}
.widget-featured .btn-light-grey, .btn-light-grey.inverse {
background-color: #2a333c;
color: #b7b7b7;
border: 2px solid;
}
.widget-featured .btn-light-grey:hover, .btn-light-grey.inverse:hover {
background-color: #262e36;
}
.btn-portage {
background-color: #74aae8;
color: #2a333c;
}
.btn-portage:hover {
background-color: #6ba5e7;
}
.widget-featured .btn-portage, .btn-portage.inverse {
background-color: #2a333c;
color: #74aae8;
border: 2px solid;
}
.widget-featured .btn-portage:hover, .btn-portage.inverse:hover {
background-color: #262e36;
}
.btn-apricot {
background-color: #ee8675;
color: #2a333c;
}
.btn-apricot:hover {
background-color: #ed7e6c;
}
.widget-featured .btn-apricot, .btn-apricot.inverse {
background-color: #2a333c;
color: #ee8675;
border: 2px solid;
}
.widget-featured .btn-apricot:hover, .btn-apricot.inverse:hover {
background-color: #262e36;
}
.btn-trendypink {
background-color: #8d5a97;
color: #2a333c;
}
.btn-trendypink:hover {
background-color: #875691;
}
.widget-featured .btn-trendypink, .btn-trendypink.inverse {
background-color: #2a333c;
color: #8d5a97;
border: 2px solid;
}
.widget-featured .btn-trendypink:hover, .btn-trendypink.inverse:hover {
background-color: #262e36;
}
.btn-turquoiseblue {
background-color: #59eecc;
color: #2a333c;
}
.btn-turquoiseblue:hover {
background-color: #50edc9;
}
.widget-featured .btn-turquoiseblue, .btn-turquoiseblue.inverse {
background-color: #2a333c;
color: #59eecc;
border: 2px solid;
}
.widget-featured .btn-turquoiseblue:hover, .btn-turquoiseblue.inverse:hover {
background-color: #262e36;
}
.btn-montecarlo {
background-color: #7dcac2;
color: #2a333c;
}
.btn-montecarlo:hover {
background-color: #76c7bf;
}
.widget-featured .btn-montecarlo, .btn-montecarlo.inverse {
background-color: #2a333c;
color: #7dcac2;
border: 2px solid;
}
.widget-featured .btn-montecarlo:hover, .btn-montecarlo.inverse:hover {
background-color: #262e36;
}
.btn-chenin {
background-color: #e1cd76;
color: #2a333c;
}
.btn-chenin:hover {
background-color: #dfca6e;
}
.widget-featured .btn-chenin, .btn-chenin.inverse {
background-color: #2a333c;
color: #e1cd76;
border: 2px solid;
}
.widget-featured .btn-chenin:hover, .btn-chenin.inverse:hover {
background-color: #262e36;
}
.btn-mediumpurple {
background-color: #6e71df;
color: #2a333c;
}
.btn-mediumpurple:hover {
background-color: #6669dd;
}
.widget-featured .btn-mediumpurple, .btn-mediumpurple.inverse {
background-color: #2a333c;
color: #6e71df;
border: 2px solid;
}
.widget-featured .btn-mediumpurple:hover, .btn-mediumpurple.inverse:hover {
background-color: #262e36;
}
.btn-dark {
background-color: #2a333c;
color: #2a333c;
}
.btn-dark:hover {
background-color: #262e36;
}
.widget-featured .btn-dark, .btn-dark.inverse {
background-color: #2a333c;
color: #2a333c;
border: 2px solid;
}
.widget-featured .btn-dark:hover, .btn-dark.inverse:hover {
background-color: #262e36;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment