This repository has been archived on 2026-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
nvim/lua/ui/kdark.lua

45 lines
1.5 KiB
Lua

local M = {}
M.colors= {
black = "#000000", -- base00
red = "#cd0000", -- base01
green = "#00cd00", -- base02
yellow = "#cdcd00", -- base03
blue = "#0000ee", -- base04
magenta = "#cd00cd", -- base05
cyan = "#00cdcd", -- base06
white = "#e5e5e5", -- base07
bright_black = "#7f7f7f", -- base08
bright_red = "#ff0000", -- base09
bright_green = "#00ff00", -- base0A
bright_yellow = "#ffff00", -- base0B
bright_blue = "#5c5cff", -- base0C
bright_magenta = "#ff00ff", -- base0D
bright_cyan = "#00ffff", -- base0E
bright_white = "#ffffff", -- base0F
orange = "#be5046",
gray = "#abb2bf",
}
-- M.colors= {
-- black = "#131313", -- base00
-- red = "#353b45", -- base01
-- green = "#3e4451", -- base02
-- yellow = "#545862", -- base03
-- blue = "#565c64", -- base04
-- magenta = "#abb2bf", -- base05
-- cyan = "#b6bdca", -- base06
-- white = "#c8ccd4", -- base07
-- bright_black = "#cd00cd", -- base08
-- bright_red = "#d19a66", -- base09
-- bright_green = "#cdcd00", -- base0A
-- bright_yellow = "#00ff00", -- base0B
-- bright_blue = "#56b6c2", -- base0C
-- bright_magenta = "#5c5cff", -- base0D
-- bright_cyan = "#cd00cd", -- base0E
-- bright_white = "#be5046", -- base0F
-- }
return M