2024-03-10 04:31:33 +00:00
|
|
|
<style>
|
|
|
|
:root {
|
|
|
|
/* Primary theme color */
|
2024-03-23 04:41:29 +00:00
|
|
|
--primary-color: #50BDB6;
|
2024-03-10 04:31:33 +00:00
|
|
|
/* Primary theme text color */
|
2024-03-23 04:41:29 +00:00
|
|
|
--primary-text-color: #0C4A4C;
|
|
|
|
--primary-text-color-over: #282B2B;
|
2024-03-10 04:31:33 +00:00
|
|
|
/* Primary theme link color */
|
2024-03-23 04:41:29 +00:00
|
|
|
--primary-link-color: #1F827B;
|
2024-03-10 04:31:33 +00:00
|
|
|
/* Secondary color: the background body color */
|
2024-03-23 04:41:29 +00:00
|
|
|
--secondary-color: #fff;
|
|
|
|
--secondary-text-color: #1F827B;
|
2024-03-10 04:31:33 +00:00
|
|
|
/* Highlight text color of table of content */
|
2024-03-23 04:41:29 +00:00
|
|
|
--toc-highlight-text-color: #282B2B;
|
|
|
|
--toc-background-color: #fff;
|
2024-03-10 04:31:33 +00:00
|
|
|
--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;
|
2024-03-23 04:41:29 +00:00
|
|
|
--button-color: #000;
|
|
|
|
--button-hover-color: #282B2B;
|
|
|
|
--button-text-color: #fff;
|
|
|
|
--content-text-color: #282B2B;
|
|
|
|
--content-heading-text-color: #282B2B;
|
|
|
|
--footer-background-color: #FACD69;
|
|
|
|
--footer-text-color: #282B2B;
|
2024-03-10 04:31:33 +00:00
|
|
|
}
|
|
|
|
</style>
|