Created
April 23, 2023 11:10
-
-
Save pieman2201/522920b0d306d80879cad5c47e1f6f83 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local M = {} | |
| M.base_30 = { | |
| white = "#f8f8f8", | |
| darker_black = "#171717", | |
| black = "#181818", -- nvim bg | |
| black2 = "#262626", | |
| one_bg = "#2f2f2f", | |
| one_bg2 = "#444444", | |
| one_bg3 = "#565656", | |
| grey = "#747474", | |
| grey_fg = "#828282", | |
| grey_fg2 = "#909090", | |
| light_grey = "#9b9b9b", | |
| red = "#ab4642", | |
| baby_pink = "#d59593", | |
| pink = "#e1b2b0", | |
| line = "#3b3b3b", -- for lines like vertsplit | |
| green = "#a1b56c", | |
| vibrant_green = "#abcb56", | |
| blue = "#7cafc2", | |
| nord_blue = "#609eb5", | |
| yellow = "#f7ca88", | |
| sun = "#f8ce92", | |
| purple = "#ba8baf", | |
| dark_purple = "#a86c9a", | |
| teal = "#6cb598", | |
| orange = "#a16946", | |
| cyan = "#86c1b9", | |
| statusline_bg = "#212121", | |
| lightbg = "#3e3e3e", | |
| pmenu_bg = "#d59593", | |
| folder_bg = "#7cafc2", | |
| } | |
| M.base_16 = { | |
| base00 = "#181818", | |
| base01 = "#282828", | |
| base02 = "#383838", | |
| base03 = "#585858", | |
| base04 = "#b8b8b8", | |
| base05 = "#d8d8d8", | |
| base06 = "#e8e8e8", | |
| base07 = "#f8f8f8", | |
| base08 = "#ab4642", | |
| base09 = "#dc9656", | |
| base0A = "#f7ca88", | |
| base0B = "#a1b56c", | |
| base0C = "#86c1b9", | |
| base0D = "#7cafc2", | |
| base0E = "#ba8baf", | |
| base0F = "#a16946", | |
| } | |
| M.type = "dark" | |
| M = require("base46").override_theme(M, "defaultdark") | |
| return M |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment