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

$theme-color: #009c52;
$theme-color-lightest: #f2faf6;
$theme-color-light: darken($theme-color-lightest, 3%);


.theme-green {
	@import "themeable-content";

	.nav-tree > ul > li {
		&.has-children.is-active-trail:after {
			color: $grey-darker;
		}

		&.is-active-trail > a,
		&.is-active-trail > a.is-active {
			color: $text-color;
			background-color: lighten($theme-color, 12%);
		}
	}
}
