Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐞 fix: Content text color #252

Merged
merged 3 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion docs/assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -172,14 +172,27 @@ 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 */
}

body {
color: #fff;
}

section.content , .markdown-section code{
color: var(--primary-text-color);
}

/* sidebar */
Expand Down
2 changes: 1 addition & 1 deletion notes/wiki_contributors_meeting/2024-05-02_release_plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ blockchain
blockchain's
blockchains
blockquotes
blockquote
blocksize
bloXroute
bloXroute's
Expand Down
Loading