mirror of
https://github.com/gabehf/base46.git
synced 2026-03-08 23:18:15 -07:00
finish improving themes & crediting og authors
This commit is contained in:
parent
ef9675cff4
commit
27ceaf2d53
22 changed files with 143 additions and 78 deletions
|
|
@ -82,6 +82,10 @@ return {
|
|||
fg = theme.base0D,
|
||||
},
|
||||
|
||||
["@method.call"] = {
|
||||
fg = theme.base0D,
|
||||
},
|
||||
|
||||
["@namespace"] = {
|
||||
fg = theme.base08,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- credit to original theme for existing : https://github.com/mountain-theme/Mountain
|
||||
-- NOTE: This is a modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Credits to original https://github.com/EdenEast/nightfox.nvim
|
||||
-- This is modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
@ -49,7 +52,14 @@ M.base_16 = {
|
|||
base0C = "#7ad4d6",
|
||||
base0D = "#86abdc",
|
||||
base0E = "#9d79d6",
|
||||
base0F = "#d85e7c",
|
||||
base0F = "#c0c8d5",
|
||||
}
|
||||
|
||||
M.polish_hl = {
|
||||
["@field.key"] = { fg = M.base_16.base05 },
|
||||
["@operator"] = { fg = M.base_30.dark_purple },
|
||||
["@keyword"] = { fg = M.base_30.teal },
|
||||
["@parameter"] = { fg = M.base_30.teal },
|
||||
}
|
||||
|
||||
M.type = "dark"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Credits to original https://github.com/haishanh/night-owl.vim
|
||||
-- This is modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Credits to original https://github.com/arcticicestudio/nord-vim
|
||||
-- This is modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
|
|||
|
|
@ -38,22 +38,22 @@ M.base_30 = {
|
|||
|
||||
-- Base16 colors taken from:
|
||||
M.base_16 = {
|
||||
base00 = "#1B2B34", -- Confirmed
|
||||
base01 = "#343D46", -- Confirmed
|
||||
base02 = "#4F5B66", -- Confirmed
|
||||
base03 = "#65737e", -- Confirmed
|
||||
base04 = "#A7ADBa", -- Confirmed
|
||||
base05 = "#C0C5Ce", -- Confirmed
|
||||
base06 = "#CDD3De", -- Confirmed
|
||||
base07 = "#D8DEE9", -- Confirmed
|
||||
base08 = "#6cbdbc", -- Confirmed
|
||||
base09 = "#FAC863", -- Confirmed
|
||||
base0A = "#F99157", -- Confirmed
|
||||
base0B = "#99C794", -- Confirmed
|
||||
base0C = "#5aaeae", -- Confirmed
|
||||
base0D = "#6699CC", -- Confirmed
|
||||
base0E = "#C594C5", -- Confirmed
|
||||
base0F = "#EC5F67", -- Confirmed
|
||||
base00 = "#1B2B34",
|
||||
base01 = "#343D46",
|
||||
base02 = "#4F5B66",
|
||||
base03 = "#65737e",
|
||||
base04 = "#A7ADBa",
|
||||
base05 = "#C0C5Ce",
|
||||
base06 = "#CDD3De",
|
||||
base07 = "#D8DEE9",
|
||||
base08 = "#6cbdbc",
|
||||
base09 = "#FAC863",
|
||||
base0A = "#F99157",
|
||||
base0B = "#99C794",
|
||||
base0C = "#5aaeae",
|
||||
base0D = "#6699CC",
|
||||
base0E = "#C594C5",
|
||||
base0F = "#EC5F67",
|
||||
}
|
||||
|
||||
M.polish_hl = {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Credits to original https://github.com/one-dark
|
||||
-- This is modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Credits to original https://github.com/one-dark
|
||||
-- This is modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Credits to original https://github.com/arcticicestudio/nord-vim
|
||||
-- This is modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Credits to original theme for existing https://github.com/whizkydee/vscode-palenight-theme
|
||||
-- this is a modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
|
|||
|
|
@ -54,6 +54,6 @@ M.base_16 = {
|
|||
|
||||
M.type = "dark"
|
||||
|
||||
M = require("base46").override_theme(M, "javacafe")
|
||||
M = require("base46").override_theme(M, "pastelDark")
|
||||
|
||||
return M
|
||||
|
|
|
|||
|
|
@ -38,10 +38,10 @@ M.base_30 = {
|
|||
|
||||
M.base_16 = {
|
||||
base00 = "#303338",
|
||||
base01 = "#3d4045",
|
||||
base02 = "#484b50",
|
||||
base03 = "#515459",
|
||||
base04 = "#5c5f64",
|
||||
base01 = "#3a3d42",
|
||||
base02 = "#3d4045",
|
||||
base03 = "#484b50",
|
||||
base04 = "#515459",
|
||||
base05 = "#CECECE",
|
||||
base06 = "#F2E6D4",
|
||||
base07 = "#FFF7ED",
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- credits to original radium theme from https://github.com/dharmx
|
||||
-- this is a modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- credits to original theme https://rosepinetheme.com/
|
||||
-- this is a modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
@ -36,20 +39,20 @@ M.base_30 = {
|
|||
M.base_16 = {
|
||||
base00 = "#191724",
|
||||
base01 = "#1f1d2e",
|
||||
base02 = "#403d52",
|
||||
base02 = "#26233a",
|
||||
base03 = "#6e6a86",
|
||||
base04 = "#908caa",
|
||||
base05 = "#e0def4",
|
||||
base06 = "#cecacd",
|
||||
base07 = "#fffaf3",
|
||||
base08 = "#e2e1e7",
|
||||
base09 = "#eb6f92",
|
||||
base0A = "#f6c177",
|
||||
base0B = "#ebbcba",
|
||||
base0C = "#4d90ab",
|
||||
base0D = "#93c6cf",
|
||||
base0E = "#c4a7e7",
|
||||
base0F = "#e5e5e5",
|
||||
base06 = "#e0def4",
|
||||
base07 = "#524f67",
|
||||
base08 = "#eb6f92",
|
||||
base09 = "#f6c177",
|
||||
base0A = "#ebbcba",
|
||||
base0B = "#31748f",
|
||||
base0C = "#9ccfd8",
|
||||
base0D = "#c4a7e7",
|
||||
base0E = "#f6c177",
|
||||
base0F = "#524f67",
|
||||
}
|
||||
|
||||
M = require("base46").override_theme(M, "rosepine")
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- credits to rice made by https://github.com/rxyhn
|
||||
-- This theme is made for @rxyhn's rice :D
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Credits to original https://github.com/altercation/solarized
|
||||
-- This is modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
@ -35,10 +38,10 @@ M.base_30 = {
|
|||
|
||||
M.base_16 = {
|
||||
base00 = "#002b36",
|
||||
base01 = "#073642",
|
||||
base02 = "#586e75",
|
||||
base03 = "#657b83",
|
||||
base04 = "#839496",
|
||||
base01 = "#06313c",
|
||||
base02 = "#0a3540",
|
||||
base03 = "#133e49",
|
||||
base04 = "#1b4651",
|
||||
base05 = "#93a1a1",
|
||||
base06 = "#eee8d5",
|
||||
base07 = "#fdf6e3",
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Credits to original https://github.com/SweetPastel/pastel
|
||||
-- This is modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Credits to original https://github.com/tiagovla/tokyodark.nvim
|
||||
-- This is modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
@ -8,14 +11,14 @@ M.base_30 = {
|
|||
one_bg = "#1d1e29",
|
||||
one_bg2 = "#252631",
|
||||
one_bg3 = "#252631",
|
||||
grey = "#40414c",
|
||||
grey = "#474853",
|
||||
grey_fg = "#474853",
|
||||
grey_fg2 = "#4e4f5a",
|
||||
light_grey = "#545560",
|
||||
red = "#ee6d85",
|
||||
baby_pink = "#fd7c94",
|
||||
pink = "#fe6D85",
|
||||
line = "#191a25",
|
||||
line = "#252631",
|
||||
green = "#98c379",
|
||||
vibrant_green = "#95c561",
|
||||
nord_blue = "#648ce1",
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Credits to original https://github.com/tiagovla/tokyonight.nvim
|
||||
-- This is modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
@ -34,28 +37,31 @@ M.base_30 = {
|
|||
}
|
||||
|
||||
M.base_16 = {
|
||||
base00 = "#1A1B26",
|
||||
base01 = "#3b4261",
|
||||
base02 = "#3b4261",
|
||||
base03 = "#545c7e",
|
||||
base04 = "#565c64",
|
||||
base00 = "#1a1b26",
|
||||
base01 = "#16161e",
|
||||
base02 = "#2f3549",
|
||||
base03 = "#444b6a",
|
||||
base04 = "#787c99",
|
||||
base05 = "#a9b1d6",
|
||||
base06 = "#bbc5f0",
|
||||
base07 = "#c0caf5",
|
||||
base08 = "#f7768e",
|
||||
base06 = "#cbccd1",
|
||||
base07 = "#d5d6db",
|
||||
base08 = "#73daca",
|
||||
base09 = "#ff9e64",
|
||||
base0A = "#ffd089",
|
||||
base0A = "#0db9d7",
|
||||
base0B = "#9ece6a",
|
||||
base0C = "#2ac3de",
|
||||
base0D = "#7aa2f7",
|
||||
base0C = "#b4f9f8",
|
||||
base0D = "#2ac3de",
|
||||
base0E = "#bb9af7",
|
||||
base0F = "#c0caf5",
|
||||
base0F = "#f7768e",
|
||||
}
|
||||
|
||||
M.polish_hl = {
|
||||
["@variable"] = { fg = M.base_16.base05 },
|
||||
["@function.builtin"] = { fg = M.base_30.cyan },
|
||||
["@parameter"] = { fg = M.base_30.red },
|
||||
["@punctuation.bracket"] = { fg = M.base_30.purple },
|
||||
["@method.call"] = { fg = M.base_30.red },
|
||||
["@function.call"] = { fg = M.base_30.blue },
|
||||
["@constant"] = { fg = M.base_30.orange },
|
||||
["@parameter"] = { fg = M.base_30.orange },
|
||||
}
|
||||
|
||||
M.type = "dark"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Credits to original https://chriskempson/tomorrow-theme
|
||||
-- This is modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
@ -34,28 +37,29 @@ M.base_30 = {
|
|||
}
|
||||
|
||||
M.base_16 = {
|
||||
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",
|
||||
base01 = "#282a2e",
|
||||
base02 = "#373b41",
|
||||
base03 = "#969896",
|
||||
base04 = "#b4b7b4",
|
||||
base05 = "#c5c8c6",
|
||||
base06 = "#e0e0e0",
|
||||
base07 = "#ffffff",
|
||||
base08 = "#cc6666",
|
||||
base09 = "#de935f",
|
||||
base0A = "#f0c674",
|
||||
base0B = "#b5bd68",
|
||||
base0C = "#8abeb7",
|
||||
base0D = "#81a2be",
|
||||
base0E = "#b294bb",
|
||||
base0F = "#a3685a",
|
||||
}
|
||||
|
||||
M.type = "dark"
|
||||
|
||||
M.polish_hl = {
|
||||
PmenuSel = { fg = M.base_30.black, bg = M.base_30.red },
|
||||
["@function.builtin"] = { fg = M.base_30.yellow },
|
||||
-- ["@punctuation.bracket"] = { fg = M.base_30.yellow },
|
||||
}
|
||||
|
||||
M = require("base46").override_theme(M, "tomorrow_night")
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Thanks to original theme for existing https://github.com/microsoft/vscode/blob/main/extensions/theme-defaults/themes/dark_plus.json
|
||||
-- this is a modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
@ -55,13 +58,12 @@ M.base_16 = {
|
|||
}
|
||||
|
||||
M.polish_hl = {
|
||||
luaTSField = { fg = M.base_30.teal },
|
||||
["@parameter"] = { fg = M.base_30.blue },
|
||||
["@keyword"] = { fg = M.base_30.blue },
|
||||
["@variable"] = { fg = M.base_30.cyan },
|
||||
["@field.key"] = { fg = M.base_30.green1 },
|
||||
["@keywordreturn"] = { fg = M.base_16.base0E },
|
||||
["@keywordfunction"] = { fg = M.base_30.teal },
|
||||
["@keyword.return"] = { fg = M.base_16.base0E },
|
||||
["@keyword.function"] = { fg = M.base_30.teal },
|
||||
}
|
||||
|
||||
M.type = "dark"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- Credits to original theme https://github.com/arcticicestudio/nord-vim
|
||||
-- This is modified version of it
|
||||
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
|
|
@ -42,21 +45,18 @@ M.base_16 = {
|
|||
base05 = "#d6d2c9",
|
||||
base06 = "#ddd9d0",
|
||||
base07 = "#e4e0d7",
|
||||
base08 = "#FF8F7E",
|
||||
base09 = "#FFCC66",
|
||||
base08 = "#FFCC66",
|
||||
base09 = "#dc8cff",
|
||||
base0A = "#efdeab",
|
||||
base0B = "#AEE474",
|
||||
base0C = "#7EB6BC",
|
||||
base0D = "#88B8F6",
|
||||
base0E = "#dc8cff",
|
||||
base0E = "#FF8F7E",
|
||||
base0F = "#dc8c64",
|
||||
}
|
||||
|
||||
M.polish_hl = {
|
||||
["@include"] = { fg = M.base_30.red },
|
||||
["@constructor"] = { fg = M.base_30.orange },
|
||||
["@variable"] = { link = "@constructor" },
|
||||
["@conditional"] = { link = "@include" },
|
||||
["@punctuation.bracket"] = { fg = M.base_30.sun },
|
||||
}
|
||||
|
||||
M.type = "dark"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue