@import "base.css";

:root {
    --PRIMARY-color: #161616; /* brand primary color */
    --SECONDARY-color: #61c2f2; /* brand secondary color */
    --ACCENT-color: #0185ae; /* brand accent color, used for search highlights */

    --MAIN-TEXT-color: #cccccc; /* text color of content and h1 titles */
    --MAIN-LINK-HOVER-color: #0185ae; /* hovered link color of content */
    --MAIN-BG-color: #161616; /* background color of content */
    --MAIN-TITLES-TEXT-color: #eeeeee; /* text color of h2-h6 titles and transparent box titles */

    /* adjusted to relearn-dark chroma style */
    --CODE-BLOCK-color: #cccccc; /* fallback text color of block code; should be adjusted to your selected chroma style */
    --CODE-BLOCK-BG-color: #333333; /* fallback background color of block code; should be adjusted to your selected chroma style */
    --CODE-BLOCK-BORDER-color: #333333; /* border color of block code */

    --CODE-INLINE-color: #0185ae; /* text color of inline code */
    --CODE-INLINE-BG-color: #161616;; /* background color of inline code */
    --CODE-INLINE-BORDER-color: #333333; /* border color of inline code */

    --BROWSER-theme: dark; /* name of the theme for browser scrollbars of the main section */
    --MERMAID-theme: dark; /* name of the default Mermaid theme for this variant, can be overridden in config.toml */
    --OPENAPI-theme: dark; /* name of the default OpenAPI theme for this variant, can be overridden in config.toml */
    --OPENAPI-CODE-theme: obsidian; /* name of the default OpenAPI code theme for this variant, can be overridden in config.toml */

    --MENU-HOME-LINK-color: #161616; /* home button color if configured */
    --MENU-HOME-LINK-HOVER-color: rgba( 0, 0, 0, 1 ); /* hovered home button color if configured */

    --MENU-SEARCH-color: #706f6f; /* text and icon color of search box */
    --MENU-SEARCH-BG-color: #161616; /* background color of search box */
    --MENU-SEARCH-BORDER-color: #706f6f; /* border color of search box */

    --MENU-SECTIONS-BG-color: #161616; /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
    --MENU-SECTIONS-LINK-color: rgba( 186, 186, 186, 1 ); /* link color of menu topics */
    --MENU-SECTIONS-LINK-HOVER-color: #61c2f2; /* hovered link color of menu topics */
    --MENU-SECTIONS-ACTIVE-BG-color: #1d1c1c; /* background color of the active menu section */
    --MENU-SECTION-ACTIVE-CATEGORY-color: hsl(200, 65%, 57.5%); /* text color of the displayed menu topic */
    --MENU-SECTION-ACTIVE-CATEGORY-BG-color: #333333; /* text color of the displayed menu topic */
    --MENU-SECTION-HR-color: rgba( 96, 96, 96, 1 ); /* separator color of menu footer */

    --MENU-VISITED-color: #0185ae; /* icon color of visited menu topics if configured */

    --BOX-CAPTION-color: #161616; /* text color of colored box titles */
    --BOX-BG-color: rgba( 20, 20, 20, 1 ); /* background color of colored boxes */
    --BOX-TEXT-color: #cccccc; /* text color of colored box content */
}

#topbar > div {
    background-color: #161616;
}

b, strong {
    color: #ffffff;
}
