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

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