@mixin button-color($color, $text: $white) {
    background: $color;
    color: $text;
    &:not(.disabled):not([disabled]):hover, &:focus {
        background: darken($color, 6%);
        color: $text;
    }
}

#g5-container {
	.button-primary {
	    @include button-color($core-accent);
	}
}
