diff --git a/src/css/dark-mode.css b/src/css/dark-mode.css index e93fe21..e0f56b8 100644 --- a/src/css/dark-mode.css +++ b/src/css/dark-mode.css @@ -9,7 +9,7 @@ html[data-theme=dark] { --scrollbar_hover-thumb-color: var(--color-gray-30); --body-font-color: var(--color-white); --button-font-color: #181818; - --alt-heading-font-weight: 500; + --alt-heading-font-weight: bold; --sticky-table-header-background: #545454; --tooltip-background: white; --tooltip-font-color: #181818; diff --git a/src/css/doc.css b/src/css/doc.css index 60c92b0..e04ce93 100644 --- a/src/css/doc.css +++ b/src/css/doc.css @@ -80,7 +80,7 @@ html { } .admonitionblock .content a { - white-space: normal; /* Allows links to wrap within admonition blocks */ + white-space: normal !important; /* Allows links to wrap within admonition blocks */ } } @@ -123,6 +123,11 @@ html { font-weight: var(--alt-heading-font-weight); } +.doc h6:not(.discrete) { + font-size: calc(16 / var(--rem-base) * 1rem); + font-weight: var(--alt-heading-font-weight); +} + .doc h1 .anchor, .doc h2 .anchor, .doc h3 .anchor, diff --git a/src/css/vars.css b/src/css/vars.css index ea5fd41..2c10da2 100644 --- a/src/css/vars.css +++ b/src/css/vars.css @@ -110,7 +110,7 @@ html[data-theme=dark] { --body-font-family-bold: "Inter SemiBold", "Calibre Regular", "Open Sans", arial, helvetica, sans-serif; --monospace-font-family: "IBM Plex Mono", "Courier Prime", courier, monospace; --monospace-font-weight-bold: 500; - --alt-heading-font-weight: 500; + --alt-heading-font-weight: bold; /* nav */ --nav-line-height: 1.3; /* admonitions */