/*** Color System ***/
/* Text Color System */
.t-white { color: white; }
.t-gray { color: gray; }
.t-silver { color: silver; }
.t-red { color: #d41147}
.t-skyblue { color: #2188ff}
.t-gr-pink-blue {
    background: -webkit-linear-gradient(-70deg, #db469f 0%, #2188ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
}
.t-black { color: #1e1e1e; }

/* Background Color System */
.b-light-silver { background-color: #f7f7f7; }
.b-black { background-color: #1e1e1e; ;}