From 3fc47d5c5a222fa3edb724b49df7b83fb7136409 Mon Sep 17 00:00:00 2001 From: cartercanedy <99052281+cartercanedy@users.noreply.github.com> Date: Thu, 25 Jul 2024 17:30:35 +0000 Subject: [PATCH 1/5] impl base16-default theme --- lua/lualine/themes/base16-default.lua | 41 +++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 lua/lualine/themes/base16-default.lua diff --git a/lua/lualine/themes/base16-default.lua b/lua/lualine/themes/base16-default.lua new file mode 100644 index 000000000..d53da3232 --- /dev/null +++ b/lua/lualine/themes/base16-default.lua @@ -0,0 +1,41 @@ +local colors = { + bg = '#282a2e', + alt_bg = '#373b41', + dark_fg = '#969896', + fg = '#b4b7b4', + light_fg = '#c5c8c6', + normal = '#81a2be', + insert = '#b5bd68', + visual = '#b294bb', + replace = '#de935f', +} + +local theme = { + normal = { + a = { fg = colors.bg, bg = colors.normal }, + b = { fg = colors.light_fg, bg = colors.alt_bg }, + c = { fg = colors.fg, bg = colors.bg }, + }, + replace = { + a = { fg = colors.bg, bg = colors.replace }, + b = { fg = colors.light_fg, bg = colors.alt_bg }, + }, + insert = { + a = { fg = colors.bg, bg = colors.insert }, + b = { fg = colors.light_fg, bg = colors.alt_bg }, + }, + visual = { + a = { fg = colors.bg, bg = colors.visual }, + b = { fg = colors.light_fg, bg = colors.alt_bg }, + }, + inactive = { + a = { fg = colors.dark_fg, bg = colors.bg }, + b = { fg = colors.dark_fg, bg = colors.bg }, + c = { fg = colors.dark_fg, bg = colors.bg }, + }, +} + +theme.command = theme.normal +theme.terminal = theme.insert + +return theme From c09a566538dcdecb68873e74163ae9f07d1fbc14 Mon Sep 17 00:00:00 2001 From: cartercanedy <99052281+cartercanedy@users.noreply.github.com> Date: Thu, 25 Jul 2024 10:49:32 -0700 Subject: [PATCH 2/5] Add base16-default examples to THEMES.md --- THEMES.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/THEMES.md b/THEMES.md index 379b62004..86815c608 100644 --- a/THEMES.md +++ b/THEMES.md @@ -64,6 +64,17 @@ The following example is using the `tomorrow-night` colorscheme:

+### base16-default + +This base16-inspired colorscheme that doesn't require installation of an external plugin + +

+ + + + +

+ ### codedark

From 802fa4842449237b5989a46c37b6c8def3410b9e Mon Sep 17 00:00:00 2001 From: cartercanedy <99052281+cartercanedy@users.noreply.github.com> Date: Thu, 25 Jul 2024 10:55:51 -0700 Subject: [PATCH 3/5] Fix filename in example pics --- THEMES.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/THEMES.md b/THEMES.md index 86815c608..39933c90a 100644 --- a/THEMES.md +++ b/THEMES.md @@ -69,10 +69,10 @@ The following example is using the `tomorrow-night` colorscheme: This base16-inspired colorscheme that doesn't require installation of an external plugin

- - - - + + + +

### codedark From 3ab7a728b90438f85b32595c3b6a94aae529193d Mon Sep 17 00:00:00 2001 From: cartercanedy <99052281+cartercanedy@users.noreply.github.com> Date: Thu, 25 Jul 2024 10:56:53 -0700 Subject: [PATCH 4/5] fix grammar --- THEMES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/THEMES.md b/THEMES.md index 39933c90a..d1c7d8863 100644 --- a/THEMES.md +++ b/THEMES.md @@ -66,7 +66,7 @@ The following example is using the `tomorrow-night` colorscheme: ### base16-default -This base16-inspired colorscheme that doesn't require installation of an external plugin +A base16-inspired colorscheme that doesn't require installation of an external plugin

From aa8f68b6ba2c3c5d82f4fdfd3af051cee03e4f6f Mon Sep 17 00:00:00 2001 From: Carter Canedy Date: Wed, 4 Sep 2024 11:04:00 -0700 Subject: [PATCH 5/5] change theme name to tomorrow_night over base16-default && fix example images --- THEMES.md | 20 +++++++++---------- ...{base16-default.lua => tomorrow_night.lua} | 0 2 files changed, 9 insertions(+), 11 deletions(-) rename lua/lualine/themes/{base16-default.lua => tomorrow_night.lua} (100%) diff --git a/THEMES.md b/THEMES.md index d1c7d8863..20f5231bc 100644 --- a/THEMES.md +++ b/THEMES.md @@ -64,17 +64,6 @@ The following example is using the `tomorrow-night` colorscheme:

-### base16-default - -A base16-inspired colorscheme that doesn't require installation of an external plugin - -

- - - - -

- ### codedark

@@ -362,6 +351,15 @@ pywal is another special theme. It will load the colors from your current [pywal

+### tomorrow_night + +

+ + + + +

+ ### wombat

diff --git a/lua/lualine/themes/base16-default.lua b/lua/lualine/themes/tomorrow_night.lua similarity index 100% rename from lua/lualine/themes/base16-default.lua rename to lua/lualine/themes/tomorrow_night.lua