/**
 * Theme turquoise light
 *
 * Description: Sets theme color for themeable content.
 * -----------------------------------------------------------------------------
 */

$theme-color: #00ADC0;
$theme-color-lightest: lighten($theme-color, 60%);
$theme-color-light: darken($theme-color-lightest, 3%);


.theme-turquoise-light {
	@import "themeable-content";

	.nav-tree > ul > li {
		&.is-active-trail > a,
		&.is-active-trail > a.is-active {
			background-color: darken($theme-color, 10%);
		}
	}
}
