.bg-gray {
    background-color: rgb(204, 204, 204);
}
.color-gray {
    color: rgb(204, 204, 204);
}

.bg-red {
    background-color: rgb(255, 102, 102);
}
.color-red {
    color: rgb(255, 102, 102);
}

.bg-orange {
    background-color: rgb(255, 179, 2);
}
.color-orange {
    color: rgb(255, 179, 2);
}

.bg-yellow {
    background-color: rgb(252, 232, 58);
}
.color-yellow {
    color: rgb(252, 232, 58);
}

.bg-green {
    background-color: rgb(153, 255, 102);
}
.color-green {
    color: rgb(153, 255, 102);
}

.bg-blue {
    background-color: rgb(102, 165, 255);
}
.color-blue {
    color: rgb(102, 165, 255);
}

.bg-white {
    background-color: rgb(255, 255, 255);
}
.color-white {
    color: rgb(255, 255, 255);
}

.bg-none {
    background-color: unset;
}