:root {
    /* cores principais */
    --background-color: #24292F;
    --flog-color: #24292F;
    --text-color: #BCCBD9;
    --link-color: #D9D6C6;
    --accent-color: #6509D6;

    /* botões */
    --button-color: #BCCBD9;
    --button-text-color: #FFFFFF;
    --cor-text-botao: #FFFFFF;

    /* subtítulo */
    --subtitle-bg: #BCCBD9;
    --subtitle-color: #24292F;
    --subtitle-align: left;
    --subtitle-font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --subtitle-font-size: 14px;

    /* tipografia */
    --font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --font-size: 13px;

    /* arredondamento */
    --button-radius: 24px;
    --flog-radius: 8px;
    --thumb-radius: 10px;
    --main-image-radius: 14px;

    /* fundo */
    --background-image: none;
    --background-size: cover;
    --background-position: center center;
    --background-repeat: repeat-x;

    /* barra do topo */
    --top-icons-color: #FFFFFF;
    --top-text-color: #FFFFFF;
    --top-links-color: #9D7BFF;
    --top-bg-color: #14141A;

    /* outros */
    --banner-height: 280px;
    --avatar-border-width: 0px;
    --avatar-shape-radius: 50%;
    --shadow-intensity: 5;
    --border-radius-percent: 20;
}

/* base global */
html,
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: var(--font-size);
    line-height: 1.4;
}

/* preview / flog */
#FlogPage {
    background-color: var(--background-color);
}