Skip to content

Commit 460902f

Browse files
committed
docs: Github Colorblind (Beta) docs init
1 parent 188ea91 commit 460902f

File tree

2 files changed

+77
-23
lines changed

2 files changed

+77
-23
lines changed

LUALINE.md

+22-6
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,14 @@ require('lualine').setup {
6060
![command](https://imgur.com/HGIYVSN.png)
6161
![terminal](https://imgur.com/pEWjIJ8.png)
6262

63+
#### dimmed
64+
65+
![normal](https://imgur.com/R800MhA.png)
66+
![insert](https://imgur.com/42M0X0O.png)
67+
![visual](https://imgur.com/euIfZtW.png)
68+
![command](https://imgur.com/E4tzBCD.png)
69+
![terminal](https://imgur.com/RASnrFw.png)
70+
6371
#### dark_default
6472

6573
![normal](https://imgur.com/yHa1cK1.png)
@@ -68,13 +76,13 @@ require('lualine').setup {
6876
![command](https://imgur.com/aLifoAv.png)
6977
![terminal](https://imgur.com/Q7mG5m8.png)
7078

71-
#### dimmed
79+
#### dark_colorblind
7280

73-
![normal](https://imgur.com/R800MhA.png)
74-
![insert](https://imgur.com/42M0X0O.png)
75-
![visual](https://imgur.com/euIfZtW.png)
76-
![command](https://imgur.com/E4tzBCD.png)
77-
![terminal](https://imgur.com/RASnrFw.png)
81+
![normal](https://imgur.com/yHa1cK1.png)
82+
![insert](https://imgur.com/mMX2364.png)
83+
![visual](https://imgur.com/SNwhnph.png)
84+
![command](https://imgur.com/aLifoAv.png)
85+
![terminal](https://imgur.com/Q7mG5m8.png)
7886

7987
#### light
8088

@@ -91,3 +99,11 @@ require('lualine').setup {
9199
![visual](https://imgur.com/e3xYvfu.png)
92100
![command](https://imgur.com/TrjrA3i.png)
93101
![terminal](https://imgur.com/7ukHRhL.png)
102+
103+
#### light_colorblind
104+
105+
![normal](https://imgur.com/lwTCVXc.png)
106+
![insert](https://imgur.com/zh9uPGS.png)
107+
![visual](https://imgur.com/e3xYvfu.png)
108+
![command](https://imgur.com/TrjrA3i.png)
109+
![terminal](https://imgur.com/7ukHRhL.png)

README.md

+55-17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="https://imgur.com/OLRFrjD.png" alt="github-nvim-theme" />
2+
<img src="https://imgur.com/S6SlCiV.png" alt="github-nvim-theme" />
33
</p>
44

55
### Status
@@ -65,7 +65,7 @@ require('github-theme').setup()
6565
| msg_area_style | `NONE` | Highlight style for messages and cmdline (check `:help highlight-args` for options) |
6666
| overrides | `function` | Override specific highlight groups. The function accept colors as argument. |
6767
| sidebars | `{}` | Set a darker background on sidebar-like windows. For example: `{"qf", "vista_kind", "terminal", "packer"}` |
68-
| theme_style | `dark` | Set theme variant (options: `dark`/`dark_default`/`dimmed`/`light`/`light_default`) |
68+
| theme_style | `dark` | Set theme variant (options: `dark`/`dimmed`/`dark_default`/`dark_colorblind`/`light`/`light_default`/`light_colorblind`) |
6969
| transparent | `false` | Enable this to disable setting the background color |
7070
| variable_style | `NONE` | Highlight style for variables and identifiers (check `:help highlight-args` for options) |
7171

@@ -166,9 +166,9 @@ set -as terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{25
166166

167167
## 📺 Screenshots
168168

169-
- Font: [Ubuntu Mono](https://design.ubuntu.com/font/)
169+
- Font: [JetBrains Mono](https://www.jetbrains.com/lp/mono/)
170170
- Terminal: [kitty](https://sw.kovidgoyal.net/kitty)
171-
- Icon: [circles.nvim](https://github.com/projekt0n/circles.nvim)
171+
- Icon: [nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons)
172172
- StatusLine: **Default**. [dotfiles/nvim/.config/nvim/lua/options.lua#L19-L30](https://github.com/ful1e5/dotfiles/blob/a2777f85b104622dd82f4adfc6ad032e3ff074bf/nvim/.config/nvim/lua/options.lua#L19-L30)
173173
- dotfiles: [ful1e5/dotfiles/nvim](https://github.com/ful1e5/dotfiles/tree/main/nvim/.config/nvim)
174174

@@ -190,7 +190,26 @@ require("github-theme").setup({
190190
```
191191

192192
<p align="center">
193-
<img src="https://imgur.com/wsST2ZB.png" alt="github_dark" />
193+
<img src="https://imgur.com/XWxKWc8.png" alt="github_dark" />
194+
</p>
195+
196+
#### Dimmed
197+
198+
```vim
199+
" VimScript
200+
colorscheme github_dimmed
201+
```
202+
203+
```lua
204+
-- Lua
205+
require("github-theme").setup({
206+
theme_style = "dimmed",
207+
-- other config
208+
})
209+
```
210+
211+
<p align="center">
212+
<img src="https://imgur.com/lMk4ifs.png" alt="github_dimmed" />
194213
</p>
195214

196215
#### Dark Default
@@ -209,26 +228,26 @@ require("github-theme").setup({
209228
```
210229

211230
<p align="center">
212-
<img src="https://imgur.com/pNJDMft.png" alt="github_dark_default" />
231+
<img src="https://imgur.com/ZfZcBGN.png" alt="github_dark_default" />
213232
</p>
214233

215-
#### Dimmed
234+
#### Dark Colorblind (Beta)
216235

217236
```vim
218237
" VimScript
219-
colorscheme github_dimmed
238+
colorscheme github_dark_colorblind
220239
```
221240

222241
```lua
223242
-- Lua
224243
require("github-theme").setup({
225-
theme_style = "dimmed",
244+
theme_style = "dark_colorblind",
226245
-- other config
227246
})
228247
```
229248

230249
<p align="center">
231-
<img src="https://imgur.com/LLp5qnT.png" alt="github_dimmed" />
250+
<img src="https://imgur.com/OIXgRL4.png" alt="github_dark_colorblind" />
232251
</p>
233252

234253
#### Light
@@ -247,7 +266,7 @@ require("github-theme").setup({
247266
```
248267

249268
<p align="center">
250-
<img src="https://imgur.com/yXEj746.png" alt="github_light" />
269+
<img src="https://imgur.com/OPwBDI4.png" alt="github_light" />
251270
</p>
252271

253272
#### Light Default
@@ -266,15 +285,34 @@ require("github-theme").setup({
266285
```
267286

268287
<p align="center">
269-
<img src="https://imgur.com/fykVFCr.png" alt="github_light_default" />
288+
<img src="https://imgur.com/r9uPo5B.png" alt="github_light_default" />
289+
</p>
290+
291+
#### Light Colorblind (Beta)
292+
293+
```vim
294+
" VimScript
295+
colorscheme github_light_colorblind
296+
```
297+
298+
```lua
299+
-- Lua
300+
require("github-theme").setup({
301+
theme_style = "light_colorblind",
302+
-- other config
303+
})
304+
```
305+
306+
<p align="center">
307+
<img src="https://imgur.com/fL4ZOUg.png" alt="github_light_colorblind" />
270308
</p>
271309

272310
### Syntax Styles
273311

274312
#### Default
275313

276314
<p align="center">
277-
<img src="https://imgur.com/GbemreO.png" alt="github_default_syntax" />
315+
<img src="https://imgur.com/V0DsNa0.png" alt="github_default_syntax" />
278316
</p>
279317

280318
#### Normal
@@ -299,7 +337,7 @@ require("github-theme").setup({
299337
```
300338

301339
<p align="center">
302-
<img src="https://imgur.com/qrJwUDb.png" alt="github_normal_syntax" />
340+
<img src="https://imgur.com/aRDXkWp.png" alt="github_normal_syntax" />
303341
</p>
304342

305343
#### Italic
@@ -324,7 +362,7 @@ require("github-theme").setup({
324362
```
325363

326364
<p align="center">
327-
<img src="https://imgur.com/TK6HEA4.png" alt="github_italic_syntax" />
365+
<img src="https://imgur.com/5wr3dyQ.png" alt="github_italic_syntax" />
328366
</p>
329367

330368
### Minimal config
@@ -343,13 +381,13 @@ require("github-theme").setup({
343381
```
344382

345383
<p align="center">
346-
<img src="https://imgur.com/TyaLR4n.png" alt="github_minimal" />
384+
<img src="https://imgur.com/rAsEukW.png" alt="github_minimal" />
347385
</p>
348386

349387
### Telescope
350388

351389
<p align="center">
352-
<img src="https://imgur.com/vVFjJad.png" alt="github_telescope" />
390+
<img src="https://imgur.com/XX7tixL.png" alt="github_telescope" />
353391
</p>
354392

355393
## Contributing

0 commit comments

Comments
 (0)