@tag-checkeable-color: #627B66;

.ant-tag {
    &-checkable {
        &:not(&-checked):hover {
            color: white;
            background-color: @tag-checkeable-color;
        }

        &-checked {
            background-color: @tag-checkeable-color;
        }

        &:active {
            background-color: @tag-checkeable-color;
        }
    }
}