24 lines
880 B
HTML
24 lines
880 B
HTML
<style>
|
|
:root {
|
|
/* Primary theme color */
|
|
--primary-color: #DDFFFC;
|
|
/* Primary theme text color */
|
|
--primary-text-color: #4f4442;
|
|
--primary-text-color-over: #000;
|
|
/* Primary theme link color */
|
|
--primary-link-color: #d46e13;;
|
|
/* Secondary color: the background body color */
|
|
--secondary-color: #fcfaf6;
|
|
--secondary-text-color: #303030;
|
|
/* Highlight text color of table of content */
|
|
--toc-highlight-text-color: #d46e13;
|
|
--toc-background-color: white;
|
|
--code-color: initial;
|
|
--code-background-color: initial;
|
|
--shadow-color: #ddd;
|
|
/* Font used for headers (h1 & h2) */
|
|
--header-font-family: Firava, "Fira Sans", sans-serif;
|
|
/* Font used for text */
|
|
--text-font-family: Firava, "Fira Sans", sans-serif;
|
|
}
|
|
</style>
|