github.com/hairyhenderson/gomplate/v4@v4.0.0-pre-2.0.20240520121557-362f058f0c93/docs/static/css/theme-gomplate-dark.css (about)

     1  @import "chroma-gomplate-dark.css";
     2  
     3  /* my-custom-variant */
     4  :root {
     5    --PRIMARY-color: rgb( 145, 132, 121); /* brand primary color */
     6    --SECONDARY-color: rgb( 120, 133, 145 ); /* brand secondary color */
     7    --ACCENT-color: #bb8550; /* brand accent color, used for search highlights */
     8  
     9    --MAIN-LINK-HOVER-color: #93b0ff; /* hoverd link color of content */
    10    --MAIN-BG-color: #202020; /* background color of content */
    11    --MAIN-TEXT-color: #e0e0e0; /* text color of content and h1 titles */
    12    --MAIN-TITLES-TEXT-color: #ffffff; /* text color of h2-h6 titles and transparent box titles */
    13  
    14    --CODE-BLOCK-color: #f8f8f8; /* fallback text color of block code; should be adjusted to your selected chroma style */
    15    --CODE-BLOCK-BG-color: rgb(43, 43, 43, 0.25); /* fallback background color of block code; should be adjusted to your selected chroma style */
    16    --CODE-INLINE-color: rgb( 145, 132, 121 ); /* text color of inline code */
    17    --CODE-INLINE-BG-color: rgba(45, 45, 45, 0.25); /* background color of inline code */
    18    --CODE-INLINE-BORDER-color: rgba( 0, 0, 0, 0 ); /* border color of inline code */
    19  
    20    --BROWSER-theme: dark; /* name of the theme for browser scrollbars of the main section */
    21    --MERMAID-theme: dark; /* name of the default Mermaid theme for this variant, can be overridden in config.toml */
    22    --SWAGGER-theme: dark; /* name of the default Swagger theme for this variant, can be overridden in config.toml */
    23  
    24    --MENU-HOME-LINK-color: rgba(0,0,0,0.5); /* home button color if configured */
    25    --MENU-HOME-LINK-HOVER-color: rgba(0,0,0,0.25); /* hoverd home button color if configured */
    26  
    27    --MENU-SEARCH-color: rgba(224, 224, 224, 1.0); /* text and icon color of search box */
    28    --MENU-SEARCH-BG-color: rgba(50, 50, 50, 0.8); /* background color of search box */
    29    --MENU-SEARCH-BORDER-color: rgba(255,255,255,0.25); /* border color of search box */
    30  
    31    --MENU-SECTIONS-BG-color: #2b2b2b; /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
    32    --MENU-SECTIONS-ACTIVE-BG-color: #323232; /* background color of the active menu section */
    33    --MENU-SECTIONS-LINK-color: #bababa; /* link color of menu topics */
    34    --MENU-SECTIONS-LINK-HOVER-color: #ffffff; /* hoverd link color of menu topics */
    35    --MENU-SECTION-ACTIVE-CATEGORY-color: rgb( 145, 132, 121 ); /* text color of the displayed menu topic */
    36    --MENU-SECTION-HR-color: #606060; /* separator color of menu footer */
    37  
    38    --BOX-CAPTION-color: rgba( 240, 240, 240, 1 ); /* text color of colored box titles */
    39    --BOX-BG-color: rgba( 20, 20, 20, 1 ); /* background color of colored boxes */
    40    --BOX-TEXT-color: #e0e0e0; /* text color of colored box content */
    41    --BOX-BLUE-color: rgb( 120, 133, 145 ); /* background color of blue boxes */
    42    --BOX-ORANGE-color: #bb8550; /* background color of orange boxes */
    43  }
    44  
    45  /* I use inline code in some titles, but I don't want it to be rendered like
    46    it is elsewhere */
    47  h2 code {
    48    font-size: unset;
    49    font-weight: unset;
    50    color: unset;
    51    background-color: unset;
    52  }
    53  
    54  nav code {
    55    font-size: unset;
    56    font-weight: unset;
    57    color: unset;
    58    background-color: unset;
    59  }