Skip to content

Commit 7b2ea46

Browse files
committed
Fix color theme
1 parent 5ba357d commit 7b2ea46

2 files changed

Lines changed: 24 additions & 21 deletions

File tree

src/css/custom.css

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,31 @@
22
@tailwind components;
33
@tailwind utilities;
44

5-
/* You can override the default Infima variables here. */
6-
:root {
7-
--ifm-color-primary: #46192b;
8-
--ifm-color-primary-dark: #29784c;
9-
--ifm-color-primary-darker: #277148;
10-
--ifm-color-primary-darkest: #205d3b;
11-
--ifm-color-primary-light: #33925d;
12-
--ifm-color-primary-lighter: #359962;
13-
--ifm-color-primary-lightest: #3cad6e;
14-
--ifm-code-font-size: 95%;
15-
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
16-
background-color: #242526;
17-
}
5+
/*
6+
* Payjoin brand colors:
7+
* primary: #f75394 (pink)
8+
* secondary: #46192b (dark burgundy)
9+
* tertiary: #6A394C (medium burgundy)
10+
*
11+
* Infima shades generated from #f75394.
12+
* Light mode is disabled (dark mode forced in docusaurus.config.ts).
13+
*/
1814

19-
/* For readability concerns, you should choose a lighter palette in dark mode. */
2015
[data-theme="dark"] {
2116
--ifm-color-primary: #f75394;
22-
--ifm-color-primary-dark: #21af90;
23-
--ifm-color-primary-darker: #1fa588;
24-
--ifm-color-primary-darkest: #1a8870;
25-
--ifm-color-primary-light: #29d5b0;
26-
--ifm-color-primary-lighter: #32d8b4;
27-
--ifm-color-primary-lightest: #4fddbf;
17+
--ifm-color-primary-dark: #f63382;
18+
--ifm-color-primary-darker: #f52379;
19+
--ifm-color-primary-darkest: #d70b60;
20+
--ifm-color-primary-light: #f873a6;
21+
--ifm-color-primary-lighter: #f983af;
22+
--ifm-color-primary-lightest: #fbb3cd;
23+
--ifm-code-font-size: 95%;
2824
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
25+
26+
}
27+
28+
.footer--dark {
29+
--ifm-footer-background-color: #2a1520;
30+
--ifm-footer-link-color: #ddd;
31+
--ifm-footer-title-color: #fff;
2932
}

src/pages/thank-you.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function ThankYou(): JSX.Element {
1313
Questions about your donation?{" "}
1414
<a href="mailto:donate@payjoin.org">donate@payjoin.org</a>
1515
</p>
16-
<a href="/" style={{ display: "inline-block", marginTop: "24px", color: "#4a9eff" }}>
16+
<a href="/" style={{ display: "inline-block", marginTop: "24px" }}>
1717
Back to payjoin.org
1818
</a>
1919
</div>

0 commit comments

Comments
 (0)