/* Theme Color CSS  */

:root {
    --theme_primary: #4d5761;
    --theme_dark: #1b1f24;
}

.theme_color {
    color: var(--theme_primary);
}
.theme_bg {
    background-color: var(--theme_primary);
}