|
|
@@ -4,6 +4,15 @@
|
|
|
* work well for content-centric websites.
|
|
|
*/
|
|
|
|
|
|
+@font-face {
|
|
|
+ font-family: "Inter";
|
|
|
+ src: url('/static/inter.woff') format('woff');
|
|
|
+}
|
|
|
+
|
|
|
+:root {
|
|
|
+ --ifm-font-family-base: "Inter"
|
|
|
+}
|
|
|
+
|
|
|
/* You can override the default Infima variables here. */
|
|
|
:root {
|
|
|
--ifm-color-primary: hsl(196 100% 35%);
|
|
|
@@ -13,12 +22,17 @@
|
|
|
--ifm-color-primary-light: hsl(196 100% 65%);
|
|
|
--ifm-color-primary-lighter: hsl(196 100% 75%);
|
|
|
--ifm-color-primary-lightest: hsl(196 100% 90%);
|
|
|
+ --ifm-navbar-background-color: #ffffff11;
|
|
|
+ --ifm-color-content: var(--ifm-color-emphasis-800);
|
|
|
--ifm-code-font-size: 95%;
|
|
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
|
|
|
--color-graphql-comment: #47954d;
|
|
|
--color-graphql-identifier: rgb(227, 17, 108);
|
|
|
--color-members-border: var(--ifm-color-secondary);
|
|
|
--docusaurus-highlighted-code-line-bg: #e0f1ff;
|
|
|
+ --ifm-menu-link-sublist-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"><path stroke-linecap="round" stroke-linejoin="round" d="M4.5 15.75l7.5-7.5 7.5 7.5" /></svg>')
|
|
|
+ --body-background: white;
|
|
|
+ --ifm-footer-background-color: #edf2f5;
|
|
|
}
|
|
|
|
|
|
/* For readability concerns, you should choose a lighter palette in dark mode. */
|
|
|
@@ -30,12 +44,14 @@
|
|
|
--ifm-color-primary-light: hsl(196 100% 65%);
|
|
|
--ifm-color-primary-lighter: hsl(196 100% 75%);
|
|
|
--ifm-color-primary-lightest: hsl(196 100% 90%);
|
|
|
- --ifm-navbar-background-color: #000212;
|
|
|
+ --ifm-navbar-background-color: #00021211;
|
|
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
|
|
--color-graphql-comment: #6ea372;
|
|
|
--color-graphql-identifier: rgb(255, 121, 198);
|
|
|
--color-members-border: #333;
|
|
|
--docusaurus-highlighted-code-line-bg: rgba(15, 71, 117, 0.5);
|
|
|
+ --body-background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 208, 255, 0.3), transparent);
|
|
|
+ --ifm-footer-background-color: #1a1f27;
|
|
|
}
|
|
|
|
|
|
html[data-theme='dark'] {
|
|
|
@@ -59,26 +75,3 @@ html[data-theme='dark'] {
|
|
|
.members-wrapper > h3 {
|
|
|
margin-top: 42px;
|
|
|
}
|
|
|
-
|
|
|
-/* Styling of GraphQL code blocks */
|
|
|
-.graphql-code-block {
|
|
|
- background-color: var(--ifm-pre-background);
|
|
|
- border-radius: var(--ifm-pre-border-radius);
|
|
|
- padding: var(--ifm-pre-padding);
|
|
|
- color: var(--ifm-pre-color);
|
|
|
- font: var(--ifm-code-font-size) / var(--ifm-pre-line-height) var(--ifm-font-family-monospace);
|
|
|
-}
|
|
|
-
|
|
|
-.graphql-code-line {
|
|
|
-}
|
|
|
-
|
|
|
-.graphql-code-line:not(.top-level) {
|
|
|
- margin-left: 24px;
|
|
|
-}
|
|
|
-.graphql-code-line.comment {
|
|
|
- color: var(--color-graphql-comment);
|
|
|
-}
|
|
|
-.graphql-code-identifier {
|
|
|
- color: var(--color-graphql-identifier);
|
|
|
- margin-right: 6px;
|
|
|
-}
|