Skip to content

Commit 0350689

Browse files
committed
Publish 2026-02-10
1 parent ebcc61a commit 0350689

File tree

2 files changed

+76
-5
lines changed

2 files changed

+76
-5
lines changed

help/plus/index.html

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@
5858
<article class="page-grid-content">
5959
<h1>Help — Dark Reader</h1>
6060
<style>
61+
@import "../../styles/help-plus.css";
62+
6163
aside,
6264
.v2-help-banners,
6365
darkreader-donate-mascot,
@@ -107,16 +109,16 @@ <h2 id="customize-your-theme">Customize your theme</h2>
107109
<ul>
108110
<li>You can adjust the <strong>Background</strong>, <strong>Text</strong>, and <strong>Filter</strong> mode settings. This can be used to better suit your screen parameters and the lighting in the room.</li>
109111
</ul>
112+
<h3>1. Background</h3>
110113
<img src="/images/help/plus/darkreader-background.png" alt="Customize your theme" style="width: 15rem;" loading="lazy" />
111114

112-
<h3>1. Background</h3>
115+
<h3>2. Text</h3>
113116
<img src="/images/help/plus/darkreader-text.png" alt="Customize your theme" style="width: 15rem;" loading="lazy" />
114117

115-
<h3>2. Text</h3>
118+
<h3>3. Filter</h3>
116119
<img src="/images/help/plus/darkreader-filter.png" alt="Customize your theme" style="width: 15rem;" loading="lazy" />
117120

118-
<h3>3. Filter</h3>
119-
<h2 id="custom-site-settings">Custom Site Settings</h2>
121+
<h2 id="custom-site-settings">Settings</h2>
120122

121123
<img src="/images/help/plus/darkreader-site-settings.png" alt="Custom site settings" style="width: 15rem;" loading="lazy" />
122124

@@ -128,7 +130,7 @@ <h2 id="custom-site-settings">Custom Site Settings</h2>
128130
<li><strong>4 - Advanced</strong></li>
129131
<li>You can also click on <strong>About</strong> to learn more about us and our work.</li>
130132
</ul>
131-
<h2 id="custom-site-settings">Site List</h2>
133+
<h2 id="site-list">Site List</h2>
132134

133135
<img src="/images/help/plus/darkreader-site-list.png" alt="Site List" style="width: 15rem;" loading="lazy" />
134136

@@ -155,6 +157,9 @@ <h2 id="Advanced">Advanced</h2>
155157
<li><strong>Reset all settings</strong> to default.</li>
156158
<li>If you&#39;re familiar with CSS selectors, you can contribute by suggesting fixes for filtering specific websites. You can open <strong>Developer Tools</strong> and add your own fix.</li>
157159
</ul>
160+
<h2 id="contacts">Contacts</h2>
161+
162+
<p>For any questions e-mail to <a href="mailto:support@darkreader.org">support@darkreader.org</a></p>
158163

159164
<script>
160165
(() => {

styles/help-plus.css

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
:root {
2+
--color-background: hsl(0, 0%, 0%);
3+
--color-background-article: hsl(212, 45%, 7%);
4+
--color-control: hsl(214, 39%, 30%);
5+
--color-control-hover: hsl(196, 46%, 31%);
6+
--color-text: hsl(215, 44%, 54%);
7+
--color-text-highlight: #ffffff;
8+
--color-accent: hsl(5, 78%, 61%);
9+
--gradient-accent: linear-gradient(to right, hsl(9, 51%, 53%), hsl(354, 52%, 50%), hsl(214, 46%, 50%));
10+
}
11+
12+
html,
13+
body {
14+
color: var(--color-text);
15+
font-family: system-ui, sans-serif;
16+
}
17+
18+
html {
19+
background-color: var(--color-background-article);
20+
position: relative;
21+
}
22+
23+
html::before {
24+
background-color: var(--color-background);
25+
content: "";
26+
display: block;
27+
height: 3.5rem;
28+
left: 0;
29+
position: absolute;
30+
top: 0;
31+
width: 100%;
32+
}
33+
34+
body {
35+
background-color: transparent;
36+
}
37+
38+
h1,
39+
h2,
40+
h3,
41+
h4,
42+
h5 {
43+
color: var(--color-text);
44+
}
45+
46+
h2,
47+
h3 {
48+
font-weight: 300;
49+
}
50+
51+
a,
52+
.v2-help-header-link {
53+
color: var(--color-text);
54+
}
55+
56+
.v2-help-logo-link {
57+
background-image: var(--gradient-accent);
58+
mask-image: url(/images/darkreader-type.svg);
59+
mask-position: center;
60+
mask-repeat: no-repeat;
61+
mask-size: contain;
62+
}
63+
64+
.v2-help-title {
65+
color: var(--color-text-highlight);
66+
}

0 commit comments

Comments
 (0)