// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----

@mixin theme ($theme: 'green', $map: ()) 
{ 
    div.a 
    {
      color: map-get($map, colorPrimary);
      border: 1px solid;
      padding: 5px;
    }
    div.b
    {
      color: map-get($map, colorSecondary);
      border: 1px solid;
      padding: 5px;
      background: lighten(map-get($map, colorSecondary), 20);
    }
}


.theme-green
{
  @include theme('green', (colorPrimary: green, colorSecondary: #80ff00));
}

.theme-red
{
  @include theme('red', (colorPrimary: red, colorSecondary: #bf0000));
}