mirror of
https://github.com/gabehf/base46.git
synced 2026-03-10 07:50:31 -07:00
Improve sweetpastel
This commit is contained in:
parent
0b84cd2637
commit
a4bb8ea7bb
1 changed files with 45 additions and 45 deletions
|
|
@ -1,58 +1,58 @@
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.base_30 = {
|
M.base_30 = {
|
||||||
white = "#F8F9FA",
|
white = "#FFDEDE",
|
||||||
darker_black = "#1B1F23",
|
darker_black = "#161a1e",
|
||||||
black = "#212529", -- nvim bg
|
black = "#1B1F23", -- nvim bg
|
||||||
black2 = "#343A40",
|
black2 = "#22262a",
|
||||||
one_bg = "#2b2f33", -- real bg of onedark
|
one_bg = "#25292d", -- real bg of onedark
|
||||||
one_bg2 = "#34383c",
|
one_bg2 = "#2f3337",
|
||||||
one_bg3 = "#3c4044",
|
one_bg3 = "#393d41",
|
||||||
grey = "#ADB5BD",
|
grey = "#43474b",
|
||||||
grey_fg = "#6C757D",
|
grey_fg = "#4b4f53",
|
||||||
grey_fg2 = "#495057",
|
grey_fg2 = "#54585c",
|
||||||
light_grey = "#CED4DA",
|
light_grey = "#5d6165",
|
||||||
red = "#FF8E8E",
|
red = "#e5a3a1",
|
||||||
baby_pink = "#FFEDDE",
|
baby_pink = "#FFC0EB",
|
||||||
pink = "#FFDEDE",
|
pink = "#F8B3CC",
|
||||||
line = "#343A40", -- for lines like vertsplit
|
line = "#343A40", -- for lines like vertsplit
|
||||||
green = "#E4FFDE",
|
green = "#B4E3AD",
|
||||||
vibrant_green = "#DFFFDE",
|
vibrant_green = "#9EDABE",
|
||||||
nord_blue = "#DEF2FF",
|
nord_blue = "#B0CEEF",
|
||||||
blue = "#DEFBFF",
|
blue = "#A3CBE7", -- #
|
||||||
yellow = "#FFFBDE",
|
yellow = "#ECE3B1",
|
||||||
sun = "#FFFDDE",
|
sun = "#E7DA84",
|
||||||
purple = "#EFDEFF",
|
purple = "#CEACE8",
|
||||||
dark_purple = "#EFDEFF",
|
dark_purple = "#B1A8FB",
|
||||||
teal = "#DEFFE5",
|
teal = "#94D2CF",
|
||||||
orange = "#FFE2C2",
|
orange = "#F1C192",
|
||||||
cyan = "#DEFBFF",
|
cyan = "#C9D4FF",
|
||||||
statusline_bg = "#343A40",
|
statusline_bg = "#22262a",
|
||||||
lightbg = "#495057",
|
lightbg = "#2f3337",
|
||||||
pmenu_bg = "#DEFBFF",
|
pmenu_bg = "#F8B3CC",
|
||||||
folder_bg = "#FFDEDE",
|
folder_bg = "#A3CBE7",
|
||||||
}
|
}
|
||||||
|
|
||||||
M.base_16 = {
|
M.base_16 = {
|
||||||
base00 = "#212529",
|
base00 = "#1B1F23",
|
||||||
base01 = "#343A40",
|
base01 = "#25292d",
|
||||||
base02 = "#495057",
|
base02 = "#2f3337",
|
||||||
base03 = "#6C757D",
|
base03 = "#393d41",
|
||||||
base04 = "#ADB5BD",
|
base04 = "#43474b",
|
||||||
base05 = "#CED4DA",
|
base05 = "#FDE5E6",
|
||||||
base06 = "#DEE2E6",
|
base06 = "#DEE2E6",
|
||||||
base07 = "#E9ECEF",
|
base07 = "#F8F9FA",
|
||||||
base08 = "#FF8E8E",
|
base08 = "#e5a3a1",
|
||||||
base09 = "#FFE2C2",
|
base09 = "#F1C192",
|
||||||
base0A = "#FFFBDE",
|
base0A = "#ECE3B1",
|
||||||
base0B = "#E4FFDE",
|
base0B = "#B4E3AD",
|
||||||
base0C = "#DEFFE5",
|
base0C = "#F8B3CC",
|
||||||
base0D = "#DEFBFF",
|
base0D = "#A3CBE7",
|
||||||
base0E = "#EFDEFF",
|
base0E = "#CEACE8",
|
||||||
base0F = "#FC868C",
|
base0F = "#e5a3a1",
|
||||||
}
|
}
|
||||||
|
|
||||||
M.type = "dark"
|
vim.opt.bg = "dark"
|
||||||
|
|
||||||
M = require("base46").override_theme(M, "sweetpastel")
|
M = require("base46").override_theme(M, "sweetpastel")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue