Skip to content

Commit 351d752

Browse files
author
Scarlett Eliza
authored
docs: update theming (#137)
1 parent 9918232 commit 351d752

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

site/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const config = {
8383
],
8484
},
8585
footer: {
86-
copyright: `Copyright © ${new Date().getFullYear()} Very Good Ventures.<br/>Built with 💙 by <a target="_blank" rel="noopener" aria-label="Very Good Ventures" href="https://verygood.ventures">Very Good Ventures</a>.`,
86+
copyright: `Built with 💙 by <a target="_blank" rel="noopener" aria-label="Very Good Ventures" href="https://verygood.ventures"><b>Very Good Ventures</b></a><br/>Copyright © ${new Date().getFullYear()} Very Good Ventures.`,
8787
},
8888
prism: {
8989
additionalLanguages: ['bash', 'dart', 'yaml'],

site/src/css/custom.css

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
/* You can override the default Infima variables here. */
1414
:root {
1515
/* Color Palette */
16-
--colors-darker-grey: #27364a;
17-
--colors-dark-grey: #1d2939;
16+
--colors-darker-blue: #020f30;
17+
--colors-dark-navy: #081842;
1818
--colors-light-grey: #314155;
1919
--colors-white: #ffffff;
2020
--colors-off-white: #fbfcff;
@@ -43,7 +43,7 @@
4343
/* For readability concerns, you should choose a lighter palette in dark mode. */
4444
[data-theme='dark'] {
4545
/* Custom Variables */
46-
--hero-image-background-color: var(--colors-darker-grey);
46+
--hero-image-background-color: var(--colors-darker-blue);
4747

4848
/* Infima Variables */
4949
--ifm-color-primary: #66fbd1;
@@ -53,9 +53,9 @@
5353
--ifm-color-primary-light: #88fcdb;
5454
--ifm-color-primary-lighter: #9afce1;
5555
--ifm-color-primary-lightest: #cdfef0;
56-
--ifm-footer-background-color: var(--colors-dark-grey);
57-
--ifm-background-color: var(--colors-darker-grey) !important;
58-
--ifm-navbar-background-color: var(--colors-dark-grey);
56+
--ifm-footer-background-color: var(--colors-darker-blue);
57+
--ifm-background-color: var(--colors-darker-blue) !important;
58+
--ifm-navbar-background-color: var(--colors-dark-navy);
5959
--ifm-card-background-color: var(--colors-light-grey);
6060
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
6161
}
@@ -148,3 +148,7 @@ html[data-theme='dark'] .navbar-vgv-icon:before {
148148
color: var(--ifm-menu-color);
149149
}
150150
}
151+
152+
html[data-theme='dark'] code {
153+
background: #081842 !important;
154+
}

0 commit comments

Comments
 (0)