* {
    --bg-color: #f6f7f9;
    --bg-weak: #fafbfc;
    --primary: #394dff;
    --secondary: #8894ff;
    --gold: #ffea05;
    --anti: black;
    --anti-light: #697180;
    --green: rgb(92, 205, 179);
    --green-light: #eefbf6 ;
    --red: rgb(243, 118, 118);
    --red-light: #ffd8de;
    --text-strong: #353535;
    --accent: #6366f1;
    --accent-light: #e0e7ff;
}

/* Preset text colors */
.strong-text {
    color: var(--text-strong);
}

.anti-light-text {
    color: var(--anti-light);
}

.primary-text {
    color: var(--primary);
}

.green-text {
    color: var(--green);
}

/* Background */
.bg-weak {
    background-color: var(--bg-weak) !important;
}

/* Links */
.anti-light-to-red {
    color: var(--anti-light);
    transition: 0.3s ease;
    text-decoration: n;
}

.anti-light-to-red:hover{
    color: var(--red);
}