From 8751f274254c901d0bf3f75d77b1deefae713b22 Mon Sep 17 00:00:00 2001 From: zbirenbaum Date: Fri, 15 Apr 2022 04:26:04 -0400 Subject: [PATCH] convert to 0.7 --- lua/base16.lua | 25 ++++++++-------------- lua/themes/aquarium-base16.lua | 32 ++++++++++++++-------------- lua/themes/blossom-base16.lua | 32 ++++++++++++++-------------- lua/themes/catppuccin-base16.lua | 32 ++++++++++++++-------------- lua/themes/chadracula-base16.lua | 32 ++++++++++++++-------------- lua/themes/chadtain-base16.lua | 32 ++++++++++++++-------------- lua/themes/classic-dark-base16.lua | 32 ++++++++++++++-------------- lua/themes/doom-chad-base16.lua | 32 ++++++++++++++-------------- lua/themes/everforest-base16.lua | 32 ++++++++++++++-------------- lua/themes/gruvbox-base16.lua | 32 ++++++++++++++-------------- lua/themes/gruvchad-base16.lua | 32 ++++++++++++++-------------- lua/themes/javacafe-base16.lua | 32 ++++++++++++++-------------- lua/themes/jellybeans-base16.lua | 32 ++++++++++++++-------------- lua/themes/lfgruv-base16.lua | 32 ++++++++++++++-------------- lua/themes/monekai-base16.lua | 32 ++++++++++++++-------------- lua/themes/monokai-base16.lua | 32 ++++++++++++++-------------- lua/themes/mountain-base16.lua | 32 ++++++++++++++-------------- lua/themes/night-owl-base16.lua | 32 ++++++++++++++-------------- lua/themes/nightlamp-base16.lua | 32 ++++++++++++++-------------- lua/themes/nord-base16.lua | 32 ++++++++++++++-------------- lua/themes/one-light-base16.lua | 32 ++++++++++++++-------------- lua/themes/onedark-base16.lua | 32 ++++++++++++++-------------- lua/themes/onedark-deep-base16.lua | 32 ++++++++++++++-------------- lua/themes/onejelly-base16.lua | 32 ++++++++++++++-------------- lua/themes/onenord-base16.lua | 32 ++++++++++++++-------------- lua/themes/palenight-base16.lua | 32 ++++++++++++++-------------- lua/themes/paradise-base16.lua | 32 ++++++++++++++-------------- lua/themes/penokai-base16.lua | 32 ++++++++++++++-------------- lua/themes/solarized-base16.lua | 32 ++++++++++++++-------------- lua/themes/tokyodark-base16.lua | 32 ++++++++++++++-------------- lua/themes/tokyonight-base16.lua | 32 ++++++++++++++-------------- lua/themes/tomorrow-night-base16.lua | 32 ++++++++++++++-------------- 32 files changed, 505 insertions(+), 512 deletions(-) diff --git a/lua/base16.lua b/lua/base16.lua index 1f66f29..50b27d9 100644 --- a/lua/base16.lua +++ b/lua/base16.lua @@ -1,20 +1,13 @@ -local function highlight(group, guifg, guibg, attr, guisp) - local parts = { group } - if guifg then - table.insert(parts, "guifg=#" .. guifg) +local function highlight(group, guifg, guibg, sp, sp_color) + local hl = { + fg = guifg, + bg = guibg, + special = sp_color, + } + if sp ~= nil and sp ~= "none" then + hl[sp] = true end - if guibg then - table.insert(parts, "guibg=#" .. guibg) - end - if attr then - table.insert(parts, "gui=" .. attr) - end - if guisp then - table.insert(parts, "guisp=#" .. guisp) - end - - -- nvim.ex.highlight(parts) - vim.api.nvim_command("highlight " .. table.concat(parts, " ")) + vim.api.nvim_set_hl(0, group, hl) end -- Modified from https://github.com/chriskempson/base16-vim diff --git a/lua/themes/aquarium-base16.lua b/lua/themes/aquarium-base16.lua index f288f71..95a63c6 100644 --- a/lua/themes/aquarium-base16.lua +++ b/lua/themes/aquarium-base16.lua @@ -1,20 +1,20 @@ local colors = { - base00 = "20202A", -- Default Background - base01 = "2c2e3e", -- Lighter Background (Used for status bars, line number and folding marks) - base02 = "3D4059", -- Selection Background - base03 = "313449", -- Comments, Invisibles, Line Highlighting - base04 = "63718b", -- Dark Foreground (Used for status bars) - base05 = "ced4df", -- Default Foreground, Caret, Delimiters, Operators - base06 = "414560", -- Light Foreground (Not often used) - base07 = "63718b", -- Light Background (Not often used) - base08 = "ebb9b9", -- Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted (red) - base09 = "e8cca7", -- Integers, Boolean, Constants, XML Attributes, Markup Link Url (orange) - base0A = "e6dfb8", -- Classes, Markup Bold, Search Text Background (yellow) - base0B = "b1dba4", -- Strings, Inherited Class, Markup Code, Diff Inserted (green) - base0C = "b8dceb", -- Support, Regular Expressions, Escape Characters, Markup Quotes (cyan) - base0D = "a3b8ef", -- Functions, Methods, Attribute IDs, Headings (blue) - base0E = "f6bbe7", -- Keywords, Storage, Selector, Markup Italic, Diff Changed (magenta) - base0F = "eAc1c1", -- Deprecated, Opening/Closing Embedded Language Tags, e.g. `` (pink) + base00 = "#20202A", -- Default Background + base01 = "#2c2e3e", -- Lighter Background (Used for status bars, line number and folding marks) + base02 = "#3D4059", -- Selection Background + base03 = "#313449", -- Comments, Invisibles, Line Highlighting + base04 = "#63718b", -- Dark Foreground (Used for status bars) + base05 = "#ced4df", -- Default Foreground, Caret, Delimiters, Operators + base06 = "#414560", -- Light Foreground (Not often used) + base07 = "#63718b", -- Light Background (Not often used) + base08 = "#ebb9b9", -- Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted (red) + base09 = "#e8cca7", -- Integers, Boolean, Constants, XML Attributes, Markup Link Url (orange) + base0A = "#e6dfb8", -- Classes, Markup Bold, Search Text Background (yellow) + base0B = "#b1dba4", -- Strings, Inherited Class, Markup Code, Diff Inserted (green) + base0C = "#b8dceb", -- Support, Regular Expressions, Escape Characters, Markup Quotes (cyan) + base0D = "#a3b8ef", -- Functions, Methods, Attribute IDs, Headings (blue) + base0E = "#f6bbe7", -- Keywords, Storage, Selector, Markup Italic, Diff Changed (magenta) + base0F = "#eAc1c1", -- Deprecated, Opening/Closing Embedded Language Tags, e.g. `` (pink) } return colors diff --git a/lua/themes/blossom-base16.lua b/lua/themes/blossom-base16.lua index aea886b..7485806 100644 --- a/lua/themes/blossom-base16.lua +++ b/lua/themes/blossom-base16.lua @@ -1,18 +1,18 @@ return{ - base00 = "ede6e3", - base01 = "dad3d0", - base02 = "b6b0a6", - base03 = "938d8a", - base04 = "afabaa", - base05 = "6c605a", - base06 = "938680", - base07 = "ede6e3", - base08 = "978e81", - base09 = "9c7b9c", - base0A = "b6b0a6", - base0B = "c99385", - base0C = "ce9c85", - base0D = "a09c80", - base0E = "A3BE8C", - base0F = "887c76", + base00 = "#ede6e3", + base01 = "#dad3d0", + base02 = "#b6b0a6", + base03 = "#938d8a", + base04 = "#afabaa", + base05 = "#6c605a", + base06 = "#938680", + base07 = "#ede6e3", + base08 = "#978e81", + base09 = "#9c7b9c", + base0A = "#b6b0a6", + base0B = "#c99385", + base0C = "#ce9c85", + base0D = "#a09c80", + base0E = "#A3BE8C", + base0F = "#887c76", } diff --git a/lua/themes/catppuccin-base16.lua b/lua/themes/catppuccin-base16.lua index 2269861..4b6d749 100644 --- a/lua/themes/catppuccin-base16.lua +++ b/lua/themes/catppuccin-base16.lua @@ -1,18 +1,18 @@ return { - base00 ="1E1D2D", - base01 ="282737", - base02 ="2f2e3e", - base03 ="383747", - base04 ="414050", - base05 ="bfc6d4", - base06 ="ccd3e1", - base07 ="D9E0EE", - base08 ="DDB6F2", - base09 ="89DCEB", - base0A ="F8BD96", - base0B ="ABE9B3", - base0C ="F5C2E7", - base0D ="96CDFB", - base0E ="F28FAD", - base0F ="E8A2AF", + base00 ="#1E1D2D", + base01 ="#282737", + base02 ="#2f2e3e", + base03 ="#383747", + base04 ="#414050", + base05 ="#bfc6d4", + base06 ="#ccd3e1", + base07 ="#D9E0EE", + base08 ="#DDB6F2", + base09 ="#89DCEB", + base0A ="#F8BD96", + base0B ="#ABE9B3", + base0C ="#F5C2E7", + base0D ="#96CDFB", + base0E ="#F28FAD", + base0F ="#E8A2AF", } diff --git a/lua/themes/chadracula-base16.lua b/lua/themes/chadracula-base16.lua index cd6e627..9cf6ba6 100644 --- a/lua/themes/chadracula-base16.lua +++ b/lua/themes/chadracula-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "282a36", - base01 = "3a3c4e", - base02 = "44475a", - base03 = "6272a4", - base04 = "62d6e8", - base05 = "e9e9f4", - base06 = "6272a4", - base07 = "ff95ef", - base08 = "ffb86c", - base09 = "bd93f9", - base0A = "8be9fd", - base0B = "ffffa5", - base0C = "8be9fd", - base0D = "69ff94", - base0E = "ff92df", - base0F = "f7f7fb", + base00 = "#282a36", + base01 = "#3a3c4e", + base02 = "#44475a", + base03 = "#6272a4", + base04 = "#62d6e8", + base05 = "#e9e9f4", + base06 = "#6272a4", + base07 = "#ff95ef", + base08 = "#ffb86c", + base09 = "#bd93f9", + base0A = "#8be9fd", + base0B = "#ffffa5", + base0C = "#8be9fd", + base0D = "#69ff94", + base0E = "#ff92df", + base0F = "#f7f7fb", } diff --git a/lua/themes/chadtain-base16.lua b/lua/themes/chadtain-base16.lua index 287eb37..11e9bbd 100644 --- a/lua/themes/chadtain-base16.lua +++ b/lua/themes/chadtain-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "1a2026", - base01 = "242a30", - base02 = "292f35", - base03 = "2e343a", - base04 = "42484e", - base05 = "d3d3d3", - base06 = "d8d8d8", - base07 = "b0b0b0", - base08 = "c49ea0", - base09 = "b89294", - base0A = "ccc9aa", - base0B = "8aac8b", - base0C = "8aabac", - base0D = "6b8bab", - base0E = "8f8aac", - base0F = "8b6567", + base00 = "#1a2026", + base01 = "#242a30", + base02 = "#292f35", + base03 = "#2e343a", + base04 = "#42484e", + base05 = "#d3d3d3", + base06 = "#d8d8d8", + base07 = "#b0b0b0", + base08 = "#c49ea0", + base09 = "#b89294", + base0A = "#ccc9aa", + base0B = "#8aac8b", + base0C = "#8aabac", + base0D = "#6b8bab", + base0E = "#8f8aac", + base0F = "#8b6567", } diff --git a/lua/themes/classic-dark-base16.lua b/lua/themes/classic-dark-base16.lua index 0108aa8..4cddf92 100644 --- a/lua/themes/classic-dark-base16.lua +++ b/lua/themes/classic-dark-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "151515", - base01 = "1f1f1f", - base02 = "282828", - base03 = "1b1b1b", - base04 = "d0d0d0", - base05 = "d0d0d0", - base06 = "e0e0e0", - base07 = "1f1f1f", - base08 = "AC4142", - base09 = "F4BF75", - base0A = "F4BF75", - base0B = "90A959", - base0C = "75B5AA", - base0D = "6A9FB5", - base0E = "AA759F", - base0F = "F4BF75", + base00 = "#151515", + base01 = "#1f1f1f", + base02 = "#282828", + base03 = "#1b1b1b", + base04 = "#d0d0d0", + base05 = "#d0d0d0", + base06 = "#e0e0e0", + base07 = "#1f1f1f", + base08 = "#AC4142", + base09 = "#F4BF75", + base0A = "#F4BF75", + base0B = "#90A959", + base0C = "#75B5AA", + base0D = "#6A9FB5", + base0E = "#AA759F", + base0F = "#F4BF75", } diff --git a/lua/themes/doom-chad-base16.lua b/lua/themes/doom-chad-base16.lua index cfbe896..185cc16 100644 --- a/lua/themes/doom-chad-base16.lua +++ b/lua/themes/doom-chad-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "282c34", - base01 = "32363e", - base02 = "3c4048", - base03 = "4e525a", - base04 = "5a5e66", - base05 = "a7aebb", - base06 = "b3bac7", - base07 = "bbc2cf", - base08 = "ff6c6b", - base09 = "da8548", - base0A = "ECBE7B", - base0B = "98be65", - base0C = "66c4ff", - base0D = "48a6e6", - base0E = "9c94d4", - base0F = "c85a50", + base00 = "#282c34", + base01 = "#32363e", + base02 = "#3c4048", + base03 = "#4e525a", + base04 = "#5a5e66", + base05 = "#a7aebb", + base06 = "#b3bac7", + base07 = "#bbc2cf", + base08 = "#ff6c6b", + base09 = "#da8548", + base0A = "#ECBE7B", + base0B = "#98be65", + base0C = "#66c4ff", + base0D = "#48a6e6", + base0E = "#9c94d4", + base0F = "#c85a50", } diff --git a/lua/themes/everforest-base16.lua b/lua/themes/everforest-base16.lua index 2facf47..8573670 100644 --- a/lua/themes/everforest-base16.lua +++ b/lua/themes/everforest-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "2b3339", - base01 = "323c41", - base02 = "3a4248", - base03 = "868d80", - base04 = "d3c6aa", - base05 = "d3c6aa", - base06 = "e9e8d2", - base07 = "fff9e8", - base08 = "7fbbb3", - base09 = "d699b6", - base0A = "83c092", - base0B = "dbbc7f", - base0C = "e69875", - base0D = "a7c080", - base0E = "e67e80", - base0F = "d699b6" + base00 = "#2b3339", + base01 = "#323c41", + base02 = "#3a4248", + base03 = "#868d80", + base04 = "#d3c6aa", + base05 = "#d3c6aa", + base06 = "#e9e8d2", + base07 = "#fff9e8", + base08 = "#7fbbb3", + base09 = "#d699b6", + base0A = "#83c092", + base0B = "#dbbc7f", + base0C = "#e69875", + base0D = "#a7c080", + base0E = "#e67e80", + base0F = "#d699b6" } diff --git a/lua/themes/gruvbox-base16.lua b/lua/themes/gruvbox-base16.lua index c40a9bc..314da91 100644 --- a/lua/themes/gruvbox-base16.lua +++ b/lua/themes/gruvbox-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "282828", - base01 = "3c3836", - base02 = "504945", - base03 = "665c54", - base04 = "bdae93", - base05 = "d5c4a1", - base06 = "ebdbb2", - base07 = "fbf1c7", - base08 = "fb4934", - base09 = "fe8019", - base0A = "fabd2f", - base0B = "b8bb26", - base0C = "8ec07c", - base0D = "83a598", - base0E = "d3869b", - base0F = "d65d0e", + base00 = "#282828", + base01 = "#3c3836", + base02 = "#504945", + base03 = "#665c54", + base04 = "#bdae93", + base05 = "#d5c4a1", + base06 = "#ebdbb2", + base07 = "#fbf1c7", + base08 = "#fb4934", + base09 = "#fe8019", + base0A = "#fabd2f", + base0B = "#b8bb26", + base0C = "#8ec07c", + base0D = "#83a598", + base0E = "#d3869b", + base0F = "#d65d0e", } diff --git a/lua/themes/gruvchad-base16.lua b/lua/themes/gruvchad-base16.lua index 40abb47..459d860 100644 --- a/lua/themes/gruvchad-base16.lua +++ b/lua/themes/gruvchad-base16.lua @@ -1,18 +1,18 @@ return { - base0A = "e0c080", - base04 = "d4be98", - base07 = "c7b89d", - base05 = "c0b196", - base0E = "d3869b", - base0D = "7daea3", - base0C = "86b17f", - base0B = "a9b665", - base02 = "36393a", - base0F = "d65d0e", - base03 = "404344", - base08 = "ec6b64", - base01 = "2c2f30", - base00 = "1e2122", - base09 = "e78a4e", - base06 = "c3b499" + base0A = "#e0c080", + base04 = "#d4be98", + base07 = "#c7b89d", + base05 = "#c0b196", + base0E = "#d3869b", + base0D = "#7daea3", + base0C = "#86b17f", + base0B = "#a9b665", + base02 = "#36393a", + base0F = "#d65d0e", + base03 = "#404344", + base08 = "#ec6b64", + base01 = "#2c2f30", + base00 = "#1e2122", + base09 = "#e78a4e", + base06 = "#c3b499" } diff --git a/lua/themes/javacafe-base16.lua b/lua/themes/javacafe-base16.lua index ee5f93e..84e5b8e 100644 --- a/lua/themes/javacafe-base16.lua +++ b/lua/themes/javacafe-base16.lua @@ -1,18 +1,18 @@ return { - base0A = "f5d595", - base04 = "4f565d", - base07 = "b5bcc9", - base05 = "ced4df", - base0E = "c2a2e3", - base0D = "a3b8ef", - base0C = "abb9e0", - base0B = "a5d4af", - base02 = "31383f", - base0F = "e88e9b", - base03 = "40474e", - base08 = "ef8891", - base01 = "2c333a", - base00 = "131a21", - base09 = "EDA685", - base06 = "d3d9e4" + base0A = "#f5d595", + base04 = "#4f565d", + base07 = "#b5bcc9", + base05 = "#ced4df", + base0E = "#c2a2e3", + base0D = "#a3b8ef", + base0C = "#abb9e0", + base0B = "#a5d4af", + base02 = "#31383f", + base0F = "#e88e9b", + base03 = "#40474e", + base08 = "#ef8891", + base01 = "#2c333a", + base00 = "#131a21", + base09 = "#EDA685", + base06 = "#d3d9e4" } diff --git a/lua/themes/jellybeans-base16.lua b/lua/themes/jellybeans-base16.lua index 75e1577..27d2fc8 100644 --- a/lua/themes/jellybeans-base16.lua +++ b/lua/themes/jellybeans-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "151515", - base01 = "1c1c1c", - base02 = "404040", - base03 = "888888", - base04 = "ddddbf", - base05 = "e8e8d3", - base06 = "eeeede", - base07 = "f1f1e5", - base08 = "c6b6ee", - base09 = "cf6a4c", - base0A = "fad07a", - base0B = "99ad6a", - base0C = "fabb6e", - base0D = "fabb6e", - base0E = "8197bf", - base0F = "fad07a", + base00 = "#151515", + base01 = "#1c1c1c", + base02 = "#404040", + base03 = "#888888", + base04 = "#ddddbf", + base05 = "#e8e8d3", + base06 = "#eeeede", + base07 = "#f1f1e5", + base08 = "#c6b6ee", + base09 = "#cf6a4c", + base0A = "#fad07a", + base0B = "#99ad6a", + base0C = "#fabb6e", + base0D = "#fabb6e", + base0E = "#8197bf", + base0F = "#fad07a", } diff --git a/lua/themes/lfgruv-base16.lua b/lua/themes/lfgruv-base16.lua index a20294b..782e3aa 100644 --- a/lua/themes/lfgruv-base16.lua +++ b/lua/themes/lfgruv-base16.lua @@ -1,19 +1,19 @@ return { - base00 = "282828", - base01 = "3c3836", - base02 = "504945", - base03 = "665c54", - base04 = "bdae93", - base05 = "d5c4a1", - base06 = "ebdbb2", - base07 = "fbf1c7", - base08 = "b66467", - base09 = "958793", - base0A = "dcbb8c", - base0B = "8d987e", - base0C = "8aa6a5", - base0D = "8aa6a5", - base0E = "b66467", - base0F = "d3d3c4", + base00 = "#282828", + base01 = "#3c3836", + base02 = "#504945", + base03 = "#665c54", + base04 = "#bdae93", + base05 = "#d5c4a1", + base06 = "#ebdbb2", + base07 = "#fbf1c7", + base08 = "#b66467", + base09 = "#958793", + base0A = "#dcbb8c", + base0B = "#8d987e", + base0C = "#8aa6a5", + base0D = "#8aa6a5", + base0E = "#b66467", + base0F = "#d3d3c4", } diff --git a/lua/themes/monekai-base16.lua b/lua/themes/monekai-base16.lua index 7c794b1..886a3a7 100644 --- a/lua/themes/monekai-base16.lua +++ b/lua/themes/monekai-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "242730", - base01 = "2a2e38", - base02 = "484854", - base03 = "545862", - base04 = "9ca0a4", - base05 = "bbc2cf", - base06 = "5d656b", - base07 = "4d5550", - base08 = "51afef", - base09 = "e18ef3", - base0A = "5ac9d6", - base0B = "e6c181", - base0C = "96c376", - base0D = "96c376", - base0E = "e36d76", - base0F = "bbc2cf", + base00 = "#242730", + base01 = "#2a2e38", + base02 = "#484854", + base03 = "#545862", + base04 = "#9ca0a4", + base05 = "#bbc2cf", + base06 = "#5d656b", + base07 = "#4d5550", + base08 = "#51afef", + base09 = "#e18ef3", + base0A = "#5ac9d6", + base0B = "#e6c181", + base0C = "#96c376", + base0D = "#96c376", + base0E = "#e36d76", + base0F = "#bbc2cf", } diff --git a/lua/themes/monokai-base16.lua b/lua/themes/monokai-base16.lua index 230ef1f..b8c3fc3 100644 --- a/lua/themes/monokai-base16.lua +++ b/lua/themes/monokai-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "272822", - base01 = "383830", - base02 = "49483e", - base03 = "75715e", - base04 = "a59f85", - base05 = "f8f8f2", - base06 = "f5f4f1", - base07 = "f9f8f5", - base08 = "f92672", - base09 = "fd971f", - base0A = "f4bf75", - base0B = "a6e22e", - base0C = "a1efe4", - base0D = "66d9ef", - base0E = "ae81ff", - base0F = "cc6633" + base00 = "#272822", + base01 = "#383830", + base02 = "#49483e", + base03 = "#75715e", + base04 = "#a59f85", + base05 = "#f8f8f2", + base06 = "#f5f4f1", + base07 = "#f9f8f5", + base08 = "#f92672", + base09 = "#fd971f", + base0A = "#f4bf75", + base0B = "#a6e22e", + base0C = "#a1efe4", + base0D = "#66d9ef", + base0E = "#ae81ff", + base0F = "#cc6633" } diff --git a/lua/themes/mountain-base16.lua b/lua/themes/mountain-base16.lua index 89f7555..b051cd9 100644 --- a/lua/themes/mountain-base16.lua +++ b/lua/themes/mountain-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "0f0f0f", - base01 = "151515", - base02 = "191919", - base03 = "222222", - base04 = "535353", - base05 = "f0f0f0", - base06 = "d8d8d8", - base07 = "414141", - base08 = "ac8a8c", - base09 = "d3d0ad", - base0A = "ACA98A", - base0B = "8aac8b", - base0C = "9EC3C4", - base0D = "8fb4b5", - base0E = "C49EC4", - base0F = "9d9a7b", + base00 = "#0f0f0f", + base01 = "#151515", + base02 = "#191919", + base03 = "#222222", + base04 = "#535353", + base05 = "#f0f0f0", + base06 = "#d8d8d8", + base07 = "#414141", + base08 = "#ac8a8c", + base09 = "#d3d0ad", + base0A = "#ACA98A", + base0B = "#8aac8b", + base0C = "#9EC3C4", + base0D = "#8fb4b5", + base0E = "#C49EC4", + base0F = "#9d9a7b", } diff --git a/lua/themes/night-owl-base16.lua b/lua/themes/night-owl-base16.lua index 01a4561..08ac0b1 100644 --- a/lua/themes/night-owl-base16.lua +++ b/lua/themes/night-owl-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "011627", -- bg - base01 = "0c2132", -- lightbg - base02 = "172c3d", -- selection bg - base03 = "223748", -- comments, line highlighting - base04 = "2c4152", -- dark foreground - base05 = "aeb6c3", -- Default Foreground, Caret, Delimiters, Operators - base06 = "d6deeb", -- Light Foreground (Not often used) - base07 = "feffff", -- Light Background (Not often used) - base08 = "7fdbca", -- Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted - base09 = "f78c6c", -- Integers, Boolean, Constants, XML Attributes, Markup Link Url - base0A = "c792ea", -- Classes, Markup Bold, Search Text Background - base0B = "ecc48d", -- Strings, Inherited Class, Markup Code, Diff Inserted - base0C = "91b9ff", -- Support, Regular Expressions, Escape Characters, Markup Quotes - base0D = "82aaff", -- Functions, Methods, Attribute IDs, Headings - base0E = "c792ea", -- Keywords, Storage, Selector, Markup Italic, Diff Changed - base0F = "d6deeb", -- Deprecated, Opening/Closing Embedded Language Tags, e.g. + base00 = "#011627", -- bg + base01 = "#0c2132", -- lightbg + base02 = "#172c3d", -- selection bg + base03 = "#223748", -- comments, line highlighting + base04 = "#2c4152", -- dark foreground + base05 = "#aeb6c3", -- Default Foreground, Caret, Delimiters, Operators + base06 = "#d6deeb", -- Light Foreground (Not often used) + base07 = "#feffff", -- Light Background (Not often used) + base08 = "#7fdbca", -- Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted + base09 = "#f78c6c", -- Integers, Boolean, Constants, XML Attributes, Markup Link Url + base0A = "#c792ea", -- Classes, Markup Bold, Search Text Background + base0B = "#ecc48d", -- Strings, Inherited Class, Markup Code, Diff Inserted + base0C = "#91b9ff", -- Support, Regular Expressions, Escape Characters, Markup Quotes + base0D = "#82aaff", -- Functions, Methods, Attribute IDs, Headings + base0E = "#c792ea", -- Keywords, Storage, Selector, Markup Italic, Diff Changed + base0F = "#d6deeb", -- Deprecated, Opening/Closing Embedded Language Tags, e.g. } diff --git a/lua/themes/nightlamp-base16.lua b/lua/themes/nightlamp-base16.lua index a99f550..ead2471 100644 --- a/lua/themes/nightlamp-base16.lua +++ b/lua/themes/nightlamp-base16.lua @@ -1,19 +1,19 @@ return { - base00 = "18191f", - base01 = "222329", - base02 = "2c2d33", - base03 = "3c3d43", - base04 = "b5ac9b", - base05 = "cbc0ab", - base06 = "e0d6bd", - base07 = "f1ebd1", - base08 = "b8aad9", - base09 = "b17f81", - base0A = "d4ae80", - base0B = "8aa387", - base0C = "9ba292", - base0D = "c495a2", - base0E = "8896ae", - base0F = "d0d0c7", + base00 = "#18191f", + base01 = "#222329", + base02 = "#2c2d33", + base03 = "#3c3d43", + base04 = "#b5ac9b", + base05 = "#cbc0ab", + base06 = "#e0d6bd", + base07 = "#f1ebd1", + base08 = "#b8aad9", + base09 = "#b17f81", + base0A = "#d4ae80", + base0B = "#8aa387", + base0C = "#9ba292", + base0D = "#c495a2", + base0E = "#8896ae", + base0F = "#d0d0c7", } \ No newline at end of file diff --git a/lua/themes/nord-base16.lua b/lua/themes/nord-base16.lua index 75270c5..8d977cf 100644 --- a/lua/themes/nord-base16.lua +++ b/lua/themes/nord-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "2E3440", - base01 = "3B4252", - base02 = "434C5E", - base03 = "4C566A", - base04 = "D8DEE9", - base05 = "E5E9F0", - base06 = "ECEFF4", - base07 = "8FBCBB", - base08 = "88C0D0", - base09 = "81A1C1", - base0A = "88C0D0", - base0B = "A3BE8C", - base0C = "81A1C1", - base0D = "81A1C1", - base0E = "81A1C1", - base0F = "B48EAD", + base00 = "#2E3440", + base01 = "#3B4252", + base02 = "#434C5E", + base03 = "#4C566A", + base04 = "#D8DEE9", + base05 = "#E5E9F0", + base06 = "#ECEFF4", + base07 = "#8FBCBB", + base08 = "#88C0D0", + base09 = "#81A1C1", + base0A = "#88C0D0", + base0B = "#A3BE8C", + base0C = "#81A1C1", + base0D = "#81A1C1", + base0E = "#81A1C1", + base0F = "#B48EAD", } diff --git a/lua/themes/one-light-base16.lua b/lua/themes/one-light-base16.lua index be17e2d..973de20 100644 --- a/lua/themes/one-light-base16.lua +++ b/lua/themes/one-light-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "fafafa", - base01 = "f0f0f1", - base02 = "e5e5e6", - base03 = "a0a1a7", - base04 = "696c77", - base05 = "383a42", - base06 = "202227", - base07 = "090a0b", - base08 = "ca1243", - base09 = "d75f00", - base0A = "c18401", - base0B = "50a14f", - base0C = "0184bc", - base0D = "4078f2", - base0E = "a626a4", - base0F = "986801", + base00 = "#fafafa", + base01 = "#f0f0f1", + base02 = "#e5e5e6", + base03 = "#a0a1a7", + base04 = "#696c77", + base05 = "#383a42", + base06 = "#202227", + base07 = "#090a0b", + base08 = "#ca1243", + base09 = "#d75f00", + base0A = "#c18401", + base0B = "#50a14f", + base0C = "#0184bc", + base0D = "#4078f2", + base0E = "#a626a4", + base0F = "#986801", } diff --git a/lua/themes/onedark-base16.lua b/lua/themes/onedark-base16.lua index a22c6b1..dca1876 100644 --- a/lua/themes/onedark-base16.lua +++ b/lua/themes/onedark-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "1e222a", - base01 = "353b45", - base02 = "3e4451", - base03 = "545862", - base04 = "565c64", - base05 = "abb2bf", - base06 = "b6bdca", - base07 = "c8ccd4", - base08 = "e06c75", - base09 = "d19a66", - base0A = "e5c07b", - base0B = "98c379", - base0C = "56b6c2", - base0D = "61afef", - base0E = "c678dd", - base0F = "be5046", + base00 = "#1e222a", + base01 = "#353b45", + base02 = "#3e4451", + base03 = "#545862", + base04 = "#565c64", + base05 = "#abb2bf", + base06 = "#b6bdca", + base07 = "#c8ccd4", + base08 = "#e06c75", + base09 = "#d19a66", + base0A = "#e5c07b", + base0B = "#98c379", + base0C = "#56b6c2", + base0D = "#61afef", + base0E = "#c678dd", + base0F = "#be5046", } diff --git a/lua/themes/onedark-deep-base16.lua b/lua/themes/onedark-deep-base16.lua index c1ce19e..3d49d1f 100644 --- a/lua/themes/onedark-deep-base16.lua +++ b/lua/themes/onedark-deep-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "1a212e", - base01 = "1e2532", - base02 = "21283b", - base03 = "4f5f7e", - base04 = "596988", - base05 = "6c7d9c", - base06 = "b6bdca", - base07 = "c8ccd4", - base08 = "f65866", - base09 = "ea8912", - base0A = "ebc275", - base0B = "8bcd5b", - base0C = "52a0e0", - base0D = "41a7fc", - base0E = "c678dd", - base0F = "f65866", + base00 = "#1a212e", + base01 = "#1e2532", + base02 = "#21283b", + base03 = "#4f5f7e", + base04 = "#596988", + base05 = "#6c7d9c", + base06 = "#b6bdca", + base07 = "#c8ccd4", + base08 = "#f65866", + base09 = "#ea8912", + base0A = "#ebc275", + base0B = "#8bcd5b", + base0C = "#52a0e0", + base0D = "#41a7fc", + base0E = "#c678dd", + base0F = "#f65866", } diff --git a/lua/themes/onejelly-base16.lua b/lua/themes/onejelly-base16.lua index d976425..71de815 100644 --- a/lua/themes/onejelly-base16.lua +++ b/lua/themes/onejelly-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "151515", - base01 = "2e2e2e", - base02 = "3a3a3a", - base03 = "424242", - base04 = "474747", - base05 = "d9d9c4", - base06 = "dedec9", - base07 = "f1f1e5", - base08 = "dd785a", - base09 = "c99f4a", - base0A = "e1b655", - base0B = "99ad6a", - base0C = "7187af", - base0D = "8fa5cd", - base0E = "e18be1", - base0F = "cf6a4c", + base00 = "#151515", + base01 = "#2e2e2e", + base02 = "#3a3a3a", + base03 = "#424242", + base04 = "#474747", + base05 = "#d9d9c4", + base06 = "#dedec9", + base07 = "#f1f1e5", + base08 = "#dd785a", + base09 = "#c99f4a", + base0A = "#e1b655", + base0B = "#99ad6a", + base0C = "#7187af", + base0D = "#8fa5cd", + base0E = "#e18be1", + base0F = "#cf6a4c", } diff --git a/lua/themes/onenord-base16.lua b/lua/themes/onenord-base16.lua index 884af63..24b5788 100644 --- a/lua/themes/onenord-base16.lua +++ b/lua/themes/onenord-base16.lua @@ -1,18 +1,18 @@ return { - base0A = "EBCB8B", - base04 = "566074", - base07 = "ced4df", - base05 = "bfc5d0", - base0E = "B48EAD", - base0D = "81A1C1", - base0C = "97b7d7", - base0B = "A3BE8C", - base02 = "434C5E", - base0F = "d57780", - base03 = "4C566A", - base08 = "d57780", - base01 = "3B4252", - base00 = "2a303c", - base09 = "e39a83", - base06 = "c7cdd8" + base0A = "#EBCB8B", + base04 = "#566074", + base07 = "#ced4df", + base05 = "#bfc5d0", + base0E = "#B48EAD", + base0D = "#81A1C1", + base0C = "#97b7d7", + base0B = "#A3BE8C", + base02 = "#434C5E", + base0F = "#d57780", + base03 = "#4C566A", + base08 = "#d57780", + base01 = "#3B4252", + base00 = "#2a303c", + base09 = "#e39a83", + base06 = "#c7cdd8" } diff --git a/lua/themes/palenight-base16.lua b/lua/themes/palenight-base16.lua index b0214ae..948f90f 100644 --- a/lua/themes/palenight-base16.lua +++ b/lua/themes/palenight-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "292d3e", - base01 = "444267", - base02 = "32374d", - base03 = "676e95", - base04 = "8796b0", - base05 = "959dcb", - base06 = "959dcb", - base07 = "ffffff", - base08 = "f07178", - base09 = "f78c6c", - base0A = "ffcb6b", - base0B = "c3e88d", - base0C = "89ddff", - base0D = "82aaff", - base0E = "c792ea", - base0F = "ff5370" + base00 = "#292d3e", + base01 = "#444267", + base02 = "#32374d", + base03 = "#676e95", + base04 = "#8796b0", + base05 = "#959dcb", + base06 = "#959dcb", + base07 = "#ffffff", + base08 = "#f07178", + base09 = "#f78c6c", + base0A = "#ffcb6b", + base0B = "#c3e88d", + base0C = "#89ddff", + base0D = "#82aaff", + base0E = "#c792ea", + base0F = "#ff5370" } diff --git a/lua/themes/paradise-base16.lua b/lua/themes/paradise-base16.lua index 4ed64cd..ce65d3a 100644 --- a/lua/themes/paradise-base16.lua +++ b/lua/themes/paradise-base16.lua @@ -1,19 +1,19 @@ return { - base00 = "151515", - base01 = "1f1f1f", - base02 = "282828", - base03 = "3b3b3b", - base04 = "e8e3e3", - base05 = "e8e3e3", - base06 = "e8e3e3", - base07 = "e8e3e3", - base08 = "b66467", - base09 = "d9bc8c", - base0A = "d9bc8c", - base0B = "8c977d", - base0C = "8aa6a2", - base0D = "8da3b9", - base0E = "a988b0", - base0F = "d9bc8c", + base00 = "#151515", + base01 = "#1f1f1f", + base02 = "#282828", + base03 = "#3b3b3b", + base04 = "#e8e3e3", + base05 = "#e8e3e3", + base06 = "#e8e3e3", + base07 = "#e8e3e3", + base08 = "#b66467", + base09 = "#d9bc8c", + base0A = "#d9bc8c", + base0B = "#8c977d", + base0C = "#8aa6a2", + base0D = "#8da3b9", + base0E = "#a988b0", + base0F = "#d9bc8c", } diff --git a/lua/themes/penokai-base16.lua b/lua/themes/penokai-base16.lua index 52aa843..cd87541 100644 --- a/lua/themes/penokai-base16.lua +++ b/lua/themes/penokai-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "2a2f38", - base01 = "323c41", - base02 = "3a4248", - base03 = "868d80", - base04 = "d3c6aa", - base05 = "e1e3e4", - base06 = "e1e3e4", - base07 = "fff9e8", - base08 = "6dc7e3", - base09 = "d699b6", - base0A = "83c092", - base0B = "eacb64", - base0C = "ff6578", - base0D = "9dd274", - base0E = "f69c5e", - base0F = "ba9cf3" + base00 = "#2a2f38", + base01 = "#323c41", + base02 = "#3a4248", + base03 = "#868d80", + base04 = "#d3c6aa", + base05 = "#e1e3e4", + base06 = "#e1e3e4", + base07 = "#fff9e8", + base08 = "#6dc7e3", + base09 = "#d699b6", + base0A = "#83c092", + base0B = "#eacb64", + base0C = "#ff6578", + base0D = "#9dd274", + base0E = "#f69c5e", + base0F = "#ba9cf3" } diff --git a/lua/themes/solarized-base16.lua b/lua/themes/solarized-base16.lua index f6e8824..3da3203 100644 --- a/lua/themes/solarized-base16.lua +++ b/lua/themes/solarized-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "002b36", - base01 = "073642", - base02 = "586e75", - base03 = "657b83", - base04 = "839496", - base05 = "93a1a1", - base06 = "eee8d5", - base07 = "fdf6e3", - base08 = "dc322f", - base09 = "cb4b16", - base0A = "b58900", - base0B = "859900", - base0C = "2aa198", - base0D = "268bd2", - base0E = "6c71c4", - base0F = "d33682" + base00 = "#002b36", + base01 = "#073642", + base02 = "#586e75", + base03 = "#657b83", + base04 = "#839496", + base05 = "#93a1a1", + base06 = "#eee8d5", + base07 = "#fdf6e3", + base08 = "#dc322f", + base09 = "#cb4b16", + base0A = "#b58900", + base0B = "#859900", + base0C = "#2aa198", + base0D = "#268bd2", + base0E = "#6c71c4", + base0F = "#d33682" } diff --git a/lua/themes/tokyodark-base16.lua b/lua/themes/tokyodark-base16.lua index fd05e98..a544bda 100644 --- a/lua/themes/tokyodark-base16.lua +++ b/lua/themes/tokyodark-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "11121d", - base01 = "1b1c27", - base02 = "21222d", - base03 = "282934", - base04 = "30313c", - base05 = "abb2bf", - base06 = "b2b9c6", - base07 = "b9c0cd", - base08 = "ee6d85", - base09 = "7199ee", - base0A = "7199ee", - base0B = "dfae67", - base0C = "a485dd", - base0D = "95c561", - base0E = "a485dd", - base0F = "f3627a", + base00 = "#11121d", + base01 = "#1b1c27", + base02 = "#21222d", + base03 = "#282934", + base04 = "#30313c", + base05 = "#abb2bf", + base06 = "#b2b9c6", + base07 = "#b9c0cd", + base08 = "#ee6d85", + base09 = "#7199ee", + base0A = "#7199ee", + base0B = "#dfae67", + base0C = "#a485dd", + base0D = "#95c561", + base0E = "#a485dd", + base0F = "#f3627a", } diff --git a/lua/themes/tokyonight-base16.lua b/lua/themes/tokyonight-base16.lua index 2c17d25..77a916c 100644 --- a/lua/themes/tokyonight-base16.lua +++ b/lua/themes/tokyonight-base16.lua @@ -1,18 +1,18 @@ return { - base0A = "e0af68", - base04 = "565c64", - base07 = "c0caf5", - base05 = "a9b1d6", - base0E = "9d7cd8", - base0D = "7aa2f7", - base0C = "2ac3de", - base0B = "9ece6a", - base02 = "3b4261", - base0F = "9abdf5", - base03 = "545c7e", - base08 = "f7768e", - base01 = "3b4261", - base00 = "1A1B26", - base09 = "ff9e64", - base06 = "bbc5f0" + base0A = "#e0af68", + base04 = "#565c64", + base07 = "#c0caf5", + base05 = "#a9b1d6", + base0E = "#9d7cd8", + base0D = "#7aa2f7", + base0C = "#2ac3de", + base0B = "#9ece6a", + base02 = "#3b4261", + base0F = "#9abdf5", + base03 = "#545c7e", + base08 = "#f7768e", + base01 = "#3b4261", + base00 = "#1A1B26", + base09 = "#ff9e64", + base06 = "#bbc5f0" } diff --git a/lua/themes/tomorrow-night-base16.lua b/lua/themes/tomorrow-night-base16.lua index 3157f1a..068e09d 100644 --- a/lua/themes/tomorrow-night-base16.lua +++ b/lua/themes/tomorrow-night-base16.lua @@ -1,18 +1,18 @@ return { - base0A = "f0c674", - base04 = "b4b7b4", - base07 = "ffffff", - base05 = "c5c8c6", - base0E = "b294bb", - base0D = "81a2be", - base0C = "8abeb7", - base0B = "b5bd68", - base02 = "373b41", - base0F = "a3685a", - base03 = "969896", - base08 = "cc6666", - base01 = "282a2e", - base00 = "1d1f21", - base09 = "de935f", - base06 = "e0e0e0" + base0A = "#f0c674", + base04 = "#b4b7b4", + base07 = "#ffffff", + base05 = "#c5c8c6", + base0E = "#b294bb", + base0D = "#81a2be", + base0C = "#8abeb7", + base0B = "#b5bd68", + base02 = "#373b41", + base0F = "#a3685a", + base03 = "#969896", + base08 = "#cc6666", + base01 = "#282a2e", + base00 = "#1d1f21", + base09 = "#de935f", + base06 = "#e0e0e0" }