﻿:root {
    font-size: 16px;
    --jex-common-plugin-text-font-size: 1rem;
    /* Button */
    --jex-common-button-height: 1.5rem;
    --jex-common-button-text-color: var(--jex-common-text-normal-color-1);
    --jex-common-button-border-color: var(--jex-common-text-normal-color-1);
    --jex-common-button-border-color-hover: var(--jex-common-text-normal-color-1);
    --jex-common-button-background-color: var(--jex-common-color-1);
    --jex-common-button-background-color-hover: var(--jex-common-text-normal-color-1);
    --jex-common-button-background-color-active: var(--jex-common-color-1);
    --jex-common-button-background-color-selected: var(--jex-common-color-1);
}

    :root[data-theme="light"] {
        --jex-common-color-primary: rgb(135 121 78);
        --jex-common-text-normal-color-1: rgb(0 0 0);
        --jex-common-text-normal-color-2: rgb(50 50 50);
        --jex-common-text-normal-color-For-Primary-Background: rgb(235 235 235);
        --jex-common-text-disabled-color: rgb(190 190 190);
        --jex-common-text-font-family: 'Open Sans';
        --jex-common-color-1: rgb(255 255 255);
        --jex-common-color-2: rgb(235 235 235);
        --jex-common-color-3: rgb(215 215 215);
        /* Button */
        --jex-common-button-text-color-hover: var(--jex-common-color-1);
    }

    :root[data-theme="dark"] {
        --jex-common-color-primary: rgb(135 121 78);
        --jex-common-text-normal-color-1: rgb(200 200 200);
        --jex-common-text-normal-color-2: rgb(150 150 150);
        --jex-common-text-normal-color-For-Primary-Background: rgb(235 235 235);
        --jex-common-text-disabled-color: rgb(110 110 110);
        --jex-common-text-font-family: 'Open Sans';
        --jex-common-color-1: rgb(0 0 0);
        --jex-common-color-2: rgb(20 20 20);
        --jex-common-color-3: rgb(40 40 40);
        /* Button */
        --jex-common-button-text-color-hover: var(--jex-common-color-1);
    }

.sep-h {
    position: relative;
    float: left;
    width: 100%;
    height: 0px;
    margin-top: 2em;
    margin-bottom: 2em;
    background-color: rgb(50,50,50);
}

a {
    color: var(--jex-common-color-primary);
}