docs: New default color (#1857)

* docs: New default color

* fix: Adjust codeblocks

* highlight color
This commit is contained in:
Marc Rousavy 2023-09-26 14:20:05 +02:00 committed by GitHub
parent b75abd591a
commit 8a7e45d6c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,14 +7,10 @@
/* You can override the default Infima variables here. */ /* You can override the default Infima variables here. */
:root { :root {
--ifm-color-primary: rgb(131, 141, 129); --ifm-color-primary: rgb(132, 170, 124);
--ifm-color-primary-dark: rgb(95, 102, 96); --ifm-link-color: rgb(62, 166, 41);
--ifm-color-primary-darker: rgb(85, 91, 87);
--ifm-color-primary-darkest: rgb(63, 72, 67);
--ifm-color-primary-light: rgb(153, 163, 149);
--ifm-color-primary-lighter: rgb(156, 180, 173);
--ifm-color-primary-lightest: rgb(195, 207, 204);
--ifm-code-font-size: 95%; --ifm-code-font-size: 95%;
--highlight-color: rgb(118, 228, 97);
} }
.docusaurus-highlight-code-line { .docusaurus-highlight-code-line {
@ -55,3 +51,13 @@ img {
text-align: center; text-align: center;
} }
} }
code {
border-width: 0;
padding-left: 3px;
padding-right: 3px;
}
a:hover {
text-decoration: none;
color: var(--highlight-color);
}