From 460902ffdc31ecf5c519ceca05b277c69bb812a3 Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Mon, 10 Jan 2022 19:57:24 +0530 Subject: [PATCH] docs: Github Colorblind (Beta) docs init --- LUALINE.md | 28 ++++++++++++++++----- README.md | 72 +++++++++++++++++++++++++++++++++++++++++------------- 2 files changed, 77 insertions(+), 23 deletions(-) diff --git a/LUALINE.md b/LUALINE.md index d2574ac0..a8b482c9 100644 --- a/LUALINE.md +++ b/LUALINE.md @@ -60,6 +60,14 @@ require('lualine').setup { ![command](https://imgur.com/HGIYVSN.png) ![terminal](https://imgur.com/pEWjIJ8.png) +#### dimmed + +![normal](https://imgur.com/R800MhA.png) +![insert](https://imgur.com/42M0X0O.png) +![visual](https://imgur.com/euIfZtW.png) +![command](https://imgur.com/E4tzBCD.png) +![terminal](https://imgur.com/RASnrFw.png) + #### dark_default ![normal](https://imgur.com/yHa1cK1.png) @@ -68,13 +76,13 @@ require('lualine').setup { ![command](https://imgur.com/aLifoAv.png) ![terminal](https://imgur.com/Q7mG5m8.png) -#### dimmed +#### dark_colorblind -![normal](https://imgur.com/R800MhA.png) -![insert](https://imgur.com/42M0X0O.png) -![visual](https://imgur.com/euIfZtW.png) -![command](https://imgur.com/E4tzBCD.png) -![terminal](https://imgur.com/RASnrFw.png) +![normal](https://imgur.com/yHa1cK1.png) +![insert](https://imgur.com/mMX2364.png) +![visual](https://imgur.com/SNwhnph.png) +![command](https://imgur.com/aLifoAv.png) +![terminal](https://imgur.com/Q7mG5m8.png) #### light @@ -91,3 +99,11 @@ require('lualine').setup { ![visual](https://imgur.com/e3xYvfu.png) ![command](https://imgur.com/TrjrA3i.png) ![terminal](https://imgur.com/7ukHRhL.png) + +#### light_colorblind + +![normal](https://imgur.com/lwTCVXc.png) +![insert](https://imgur.com/zh9uPGS.png) +![visual](https://imgur.com/e3xYvfu.png) +![command](https://imgur.com/TrjrA3i.png) +![terminal](https://imgur.com/7ukHRhL.png) diff --git a/README.md b/README.md index 93fdf33a..5a8acb7f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@
- +
### Status @@ -65,7 +65,7 @@ require('github-theme').setup() | msg_area_style | `NONE` | Highlight style for messages and cmdline (check `:help highlight-args` for options) | | overrides | `function` | Override specific highlight groups. The function accept colors as argument. | | sidebars | `{}` | Set a darker background on sidebar-like windows. For example: `{"qf", "vista_kind", "terminal", "packer"}` | -| theme_style | `dark` | Set theme variant (options: `dark`/`dark_default`/`dimmed`/`light`/`light_default`) | +| theme_style | `dark` | Set theme variant (options: `dark`/`dimmed`/`dark_default`/`dark_colorblind`/`light`/`light_default`/`light_colorblind`) | | transparent | `false` | Enable this to disable setting the background color | | variable_style | `NONE` | Highlight style for variables and identifiers (check `:help highlight-args` for options) | @@ -166,9 +166,9 @@ set -as terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{25 ## 📺 Screenshots -- Font: [Ubuntu Mono](https://design.ubuntu.com/font/) +- Font: [JetBrains Mono](https://www.jetbrains.com/lp/mono/) - Terminal: [kitty](https://sw.kovidgoyal.net/kitty) -- Icon: [circles.nvim](https://github.com/projekt0n/circles.nvim) +- Icon: [nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons) - 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) - dotfiles: [ful1e5/dotfiles/nvim](https://github.com/ful1e5/dotfiles/tree/main/nvim/.config/nvim) @@ -190,7 +190,26 @@ require("github-theme").setup({ ```- + +
+ +#### Dimmed + +```vim +" VimScript +colorscheme github_dimmed +``` + +```lua +-- Lua +require("github-theme").setup({ + theme_style = "dimmed", + -- other config +}) +``` + ++
#### Dark Default @@ -209,26 +228,26 @@ require("github-theme").setup({ ```- +
-#### Dimmed +#### Dark Colorblind (Beta) ```vim " VimScript -colorscheme github_dimmed +colorscheme github_dark_colorblind ``` ```lua -- Lua require("github-theme").setup({ - theme_style = "dimmed", + theme_style = "dark_colorblind", -- other config }) ```- +
#### Light @@ -247,7 +266,7 @@ require("github-theme").setup({ ```- +
#### Light Default @@ -266,7 +285,26 @@ require("github-theme").setup({ ```- + +
+ +#### Light Colorblind (Beta) + +```vim +" VimScript +colorscheme github_light_colorblind +``` + +```lua +-- Lua +require("github-theme").setup({ + theme_style = "light_colorblind", + -- other config +}) +``` + ++
### Syntax Styles @@ -274,7 +312,7 @@ require("github-theme").setup({ #### Default- +
#### Normal @@ -299,7 +337,7 @@ require("github-theme").setup({ ```- +
#### Italic @@ -324,7 +362,7 @@ require("github-theme").setup({ ```- +
### Minimal config @@ -343,13 +381,13 @@ require("github-theme").setup({ ```- +
### Telescope- +
## Contributing