diff options
| author | José Juan Loeza Sierra <jj@xz6ze.com> | 2026-03-06 23:33:06 -0800 |
|---|---|---|
| committer | José Juan Loeza Sierra <jj@xz6ze.com> | 2026-03-06 23:33:06 -0800 |
| commit | af02c64ccc39838cc4a4f607280661a9ac6b971d (patch) | |
| tree | 717eb76b1fd9e8d22ce73b9bf9b7f98e807c20d5 /dot-config/nvim/lua | |
| parent | 9b48a3bd16e5fdf19b9f4fc10a641f37c94d5db7 (diff) | |
add github theme lualine
Diffstat (limited to 'dot-config/nvim/lua')
| -rw-r--r-- | dot-config/nvim/lua/my-lualine-theme.lua | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/dot-config/nvim/lua/my-lualine-theme.lua b/dot-config/nvim/lua/my-lualine-theme.lua index d2280f5..f42d331 100644 --- a/dot-config/nvim/lua/my-lualine-theme.lua +++ b/dot-config/nvim/lua/my-lualine-theme.lua @@ -1,14 +1,15 @@ --- tweaked colors from lualine default tomorrow_night +local gh = require("github-theme.spec").load("github_light") + local colors = { - bg = "#000000", - alt_bg = "#000000", - dark_fg = "#969896", - fg = "#b4b7b4", - light_fg = "#c5c8c6", - normal = "#81a2be", - insert = "#b5bd68", - visual = "#b294bb", - replace = "#de935f", + bg = gh.bg1, + alt_bg = gh.bg0, + dark_fg = gh.palette.fg.emphasis, + fg = gh.palette.fg.default, + light_fg = gh.palette.fg.subtle, + normal = gh.palette.blue.base, + insert = gh.palette.green.base, + visual = gh.palette.magenta.base, + replace = gh.palette.red.base, } local theme = { |
