From 2625d8f12a1b06f52486f1c9490fc938538c055c Mon Sep 17 00:00:00 2001 From: rahul Date: Fri, 3 May 2024 15:30:36 +0530 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Content=20text=20colo?= =?UTF-8?q?r?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/assets/css/custom.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/assets/css/custom.css b/docs/assets/css/custom.css index 1daa56f8..c306aebb 100644 --- a/docs/assets/css/custom.css +++ b/docs/assets/css/custom.css @@ -180,6 +180,13 @@ body .markdown-section { /* link */ --link-color: #ba9afd; + + /* text */ + --primary-text-color: #fff; +} + +section.content{ + color: var(--primary-text-color); } /* sidebar */ From 49e05e4ce4921eaa23ff3bd03a8fbe20c5877ee4 Mon Sep 17 00:00:00 2001 From: rahul Date: Fri, 3 May 2024 15:36:49 +0530 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=A7=B9=20chore:=20wordlist?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/wiki_contributors_meeting/2024-05-02_release_plan.md | 2 +- wordlist.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/notes/wiki_contributors_meeting/2024-05-02_release_plan.md b/notes/wiki_contributors_meeting/2024-05-02_release_plan.md index 28a72952..bd965de3 100644 --- a/notes/wiki_contributors_meeting/2024-05-02_release_plan.md +++ b/notes/wiki_contributors_meeting/2024-05-02_release_plan.md @@ -51,7 +51,7 @@ - Mario: I would suggest checking with Angus. He worked on networking and consensus and spent a lot of time on dev-p2p. - Hopinheimer: Sure. I'll ping him. - Kira: Prysm has a really cool search bar. Can we have something similar I worked on? -- Mario: We always had a search bar. With the new UI, it's improved. If there's nothing else, I think we're ready to share it! Feel free to share the wiki publically. With EPF starting soon, I think the wiki should serve as a good learning resource. Also, should we version releases? We want to offer people more stable content and maybe archive it. Thoughts? +- Mario: We always had a search bar. With the new UI, it's improved. If there's nothing else, I think we're ready to share it! Feel free to share the wiki publicly. With EPF starting soon, I think the wiki should serve as a good learning resource. Also, should we version releases? We want to offer people more stable content and maybe archive it. Thoughts? - Rahul: We could semver it. - Gorondan: Maybe we should do bi-weekly updates until it's mature, then after 1.0, we could version it. - Mario: I think most changes are behind us, so it makes sense to somehow track changes. Two weeks seems like a big window. I think we should do a weekly release. diff --git a/wordlist.txt b/wordlist.txt index 9db47b0f..6bd48029 100644 --- a/wordlist.txt +++ b/wordlist.txt @@ -52,6 +52,7 @@ blockchain blockchain's blockchains blockquotes +blockquote blocksize bloXroute bloXroute's From 91b8d1568a6a95422336fdb779bec2ae78b9ac46 Mon Sep 17 00:00:00 2001 From: rahul Date: Tue, 7 May 2024 18:16:25 +0530 Subject: [PATCH 3/3] =?UTF-8?q?=E2=9C=A8=20feat:=20adjust=20heading=20+=20?= =?UTF-8?q?body=20text?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/assets/css/custom.css | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/assets/css/custom.css b/docs/assets/css/custom.css index c306aebb..27e256f1 100644 --- a/docs/assets/css/custom.css +++ b/docs/assets/css/custom.css @@ -172,20 +172,26 @@ body .markdown-section { --navbar-root-color--active: #ba9afd; --search-input-background-color: #2d1763; --table-row-odd-background: #2d1763; + --base-color: #fff; + --heading-color: #fff; + --primary-text-color: #d3d3d3; /* blockquote*/ --blockquote-background: #2d1763; - --blockquote-color: #fff; + --blockquote-color: var(--primary-text-color); --blockquote-border-color: #ba9afd; /* link */ --link-color: #ba9afd; /* text */ - --primary-text-color: #fff; } -section.content{ +body { + color: #fff; +} + +section.content , .markdown-section code{ color: var(--primary-text-color); }