diff options
| author | triethyl <triethylammonium@pm.me> | 2026-02-16 13:34:26 -0500 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2026-02-16 13:34:26 -0500 |
| commit | 5e18520acce942dc3af688eb50c57fc61b1edb5e (patch) | |
| tree | d0631e5dc099533018dca5c7bbc49187af77e040 /pkgs | |
| parent | f7693fdb318c627878d736b146b0192d9e12d2f4 (diff) | |
neovim: added melatonin color schemes
Diffstat (limited to 'pkgs')
| -rw-r--r-- | pkgs/custom-neovim/config/colors/melatonin-dark.lua | 22 | ||||
| -rw-r--r-- | pkgs/custom-neovim/config/colors/melatonin-light.lua | 23 | ||||
| -rw-r--r-- | pkgs/custom-neovim/config/lua/plugins/colorschemes.lua | 2 |
3 files changed, 46 insertions, 1 deletions
diff --git a/pkgs/custom-neovim/config/colors/melatonin-dark.lua b/pkgs/custom-neovim/config/colors/melatonin-dark.lua new file mode 100644 index 0000000..ff18966 --- /dev/null +++ b/pkgs/custom-neovim/config/colors/melatonin-dark.lua @@ -0,0 +1,22 @@ +require("mini.base16").setup { + palette = { + base00 = "#152233", + base01 = "#152233", + -- base01 = "#253850", + base02 = "#415d81", + base03 = "#5b7aa2", + base04 = "#84a3cb", + base05 = "#c8d7eb", + base06 = "#b9cce5", + base07 = "#dce7f6", + base08 = "#d87595", + base09 = "#dd9f6b", + base0A = "#c88953", + base0B = "#90a254", + base0C = "#55aa9b", + base0D = "#5ba1d0", + base0E = "#a586d9", + base0F = "#a06f42", + }, + -- use_cterm = true, +} diff --git a/pkgs/custom-neovim/config/colors/melatonin-light.lua b/pkgs/custom-neovim/config/colors/melatonin-light.lua new file mode 100644 index 0000000..6326735 --- /dev/null +++ b/pkgs/custom-neovim/config/colors/melatonin-light.lua @@ -0,0 +1,23 @@ +require("mini.base16").setup { + palette = { + base00 = "#e5edfa", + base01 = "#e5edfa", + -- base01 = "#cedef6", + base02 = "#b8cef1", + base03 = "#6e8db8", + base04 = "#2f548a", + base05 = "#294069", + -- base05 = "#040d1c", + base06 = "#132745", + base07 = "#02060e", + base08 = "#d87595", + base09 = "#dd9f6b", + base0A = "#c88953", + base0B = "#90a254", + base0C = "#55aa9b", + base0D = "#5ba1d0", + base0E = "#a586d9", + base0F = "#9a6c40", + }, + -- use_cterm = true, +} diff --git a/pkgs/custom-neovim/config/lua/plugins/colorschemes.lua b/pkgs/custom-neovim/config/lua/plugins/colorschemes.lua index 6d8963d..7b72d5e 100644 --- a/pkgs/custom-neovim/config/lua/plugins/colorschemes.lua +++ b/pkgs/custom-neovim/config/lua/plugins/colorschemes.lua @@ -3,7 +3,7 @@ return { "mini.base16", lazy = false, after = function() - vim.cmd.colorscheme("oxocarbon") + vim.cmd.colorscheme("melatonin-dark") end }, } |
