katonada
11/24/2014 - 10:53 AM

Generated by SassMeister.com.

Generated by SassMeister.com.

mladen--stars {
  color: #d44dbe;
  border-color: #a3238e;
}

mladen--fashion {
  color: #f8c67f;
  border-color: #f99d1c;
}

mladen--life {
  color: #fc3f57;
  border-color: #cd001a;
}

mladen--cool2 {
  color: #6ad6ff;
  border-color: #00aeef;
}

mladen--teenfeed {
  color: #2b9b4e;
  border-color: #117931;
}

.klasa {
  content: #d44dbe;
}
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----

$color_list: (

    types: (
        stars:    ( c1: #d44dbe, c2: #a3238e ),
        fashion:  ( c1: #f8c67f, c2: #f99d1c    ),
        life:     ( c1: #fc3f57, c2: #cd001a ),
        cool2:    ( c1: #6ad6ff, c2: #00aeef ),
        teenfeed: ( c1: #2b9b4e, c2: #117931 ),
    )
);

$types: map-get($color_list, types);
@each $type, $specs in $types {
     $c1: map-get($specs, c1);
     $c2: map-get($specs, c2);
     mladen--#{$type} {
         color: $c1;
         border-color: $c2;
     }
 }
 
 
 

$types: map-get($color_list, types);
$star: map-get($types, stars);
$starC1: map-get($star, c1);

$starC2: map-get( map-get( map-get( $color_list, types ), stars ), c1 );

.klasa {
  content: $starC2;
}