2022-02-10 23:59:40 +00:00
/ * here in this showcase we use our own modified chroma syntax highlightning style ;
if you want to use a predefined style instead :
- remove ` markup . highlight . noClasses ` from your config . toml
- set ` markup . highlight . style ` to a predefined style name in your config . toml
- remove the following ` @ import ` of the self-defined chroma stylesheet * /
@ import "chroma-relearn-light.css" ;
: root {
2022-05-22 21:55:26 +00:00
--PRIMARY-color : # 7dc903 ; /* brand primary color */
--SECONDARY-color : # 486ac9 ; /* brand secondary color */
2022-12-02 19:44:53 +00:00
--ACCENT-color : # ff88ff ; /* brand accent color, used for search highlights */
2022-05-22 21:55:26 +00:00
--MAIN-TEXT-color : # 101010 ; /* text color of content and h1 titles */
2022-11-22 19:52:36 +00:00
--MAIN-LINK-HOVER-color : # 202891 ; /* hovered link color of content */
2022-05-22 21:55:26 +00:00
--MAIN-BG-color : # ffffff ; /* background color of content */
--MAIN-TITLES-TEXT-color : # 4a4a4a ; /* text color of h2-h6 titles and transparent box titles */
2022-02-10 23:59:40 +00:00
/* adjusted to relearn-light chroma style */
2022-05-22 21:55:26 +00:00
--CODE-BLOCK-color : # 000000 ; /* fallback text color of block code; should be adjusted to your selected chroma style */
--CODE-BLOCK-BG-color : # f8f8f8 ; /* fallback background color of block code; should be adjusted to your selected chroma style */
--CODE-BLOCK-BORDER-color : # d8d8d8 ; /* border color of block code */
--CODE-INLINE-color : # 5e5e5e ; /* text color of inline code */
--CODE-INLINE-BG-color : # fffae9 ; /* background color of inline code */
--CODE-INLINE-BORDER-color : # f8e8c8 ; /* border color of inline code */
2022-07-17 18:04:08 +00:00
--MERMAID-theme : default ; /* name of the default Mermaid theme for this variant, can be overridden in config.toml */
--SWAGGER-theme : light ; /* name of the default Swagger theme for this variant, can be overridden in config.toml */
2022-11-22 19:52:36 +00:00
--MENU-HOME-LINK-color : # 404040 ; /* home button color if configured */
--MENU-HOME-LINK-HOVER-color : # 000000 ; /* hovered home button color if configured */
2022-05-22 21:55:26 +00:00
--MENU-SEARCH-color : # e0e0e0 ; /* text and icon color of search box */
--MENU-SEARCH-BG-color : # 323232 ; /* background color of search box */
--MENU-SEARCH-BORDER-color : # e0e0e0 ; /* border color of search box */
--MENU-SECTIONS-BG-color : # 282828 ; /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
--MENU-SECTIONS-ACTIVE-BG-color : rgba ( 0 , 0 , 0 , . 166 ) ; /* background color of the active menu section */
--MENU-SECTIONS-LINK-color : # bababa ; /* link color of menu topics */
2022-11-22 19:52:36 +00:00
--MENU-SECTIONS-LINK-HOVER-color : # ffffff ; /* hovered link color of menu topics */
2022-05-22 21:55:26 +00:00
--MENU-SECTION-ACTIVE-CATEGORY-color : # 444444 ; /* text color of the displayed menu topic */
--MENU-SECTION-HR-color : # 606060 ; /* separator color of menu footer */
--BOX-CAPTION-color : rgba ( 255 , 255 , 255 , 1 ) ; /* text color of colored box titles */
--BOX-BG-color : rgba ( 255 , 255 , 255 , . 833 ) ; /* background color of colored boxes */
--BOX-TEXT-color : rgba ( 16 , 16 , 16 , 1 ) ; /* text color of colored box content */
2022-02-10 23:59:40 +00:00
}