Skip to content

Commit d3c84c0

Browse files
authored
#154 feat: Bold text now renders in white across the HTML docs via the shared stylesheet (#172)
1 parent 2698c51 commit d3c84c0

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
- Make prerelease self-update confirmation default to `No`.
1616
- `Update-NovaModuleTool`, `Update-NovaModuleTools`, and `% nova update` now require an explicit `Y` before a
1717
prerelease self-update continues, so pressing Enter cancels the update instead of accepting it.
18+
- Render bold text in white across the hosted HTML documentation.
19+
- Emphasized `<strong>` and `<b>` text now stands out more clearly when scanning docs pages.
1820

1921
### Deprecated
2022

docs/assets/site.css

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
--panel: rgba(255, 255, 255, 0.08);
55
--panel-strong: rgba(255, 255, 255, 0.12);
66
--text: #eef3ff;
7+
--text-strong: #ffffff;
78
--muted: #b8c3df;
89
--accent: #6ee7b7;
910
--accent-strong: #22c55e;
@@ -44,6 +45,11 @@ a {
4445
color: inherit;
4546
}
4647

48+
strong,
49+
b {
50+
color: var(--text-strong);
51+
}
52+
4753
.site-header {
4854
position: sticky;
4955
top: 0;
@@ -749,7 +755,7 @@ td {
749755
.notice strong {
750756
display: block;
751757
margin-bottom: 0.35rem;
752-
color: var(--text);
758+
color: var(--text-strong);
753759
}
754760

755761
.notice p {

0 commit comments

Comments
 (0)