nvim/lua/cosmic/core/theme/integrated/nightfox.lua
Harun Sheikhali 9b27aae4c2
added nightfox colors (#29)
* added nightfox colours

Co-authored-by: Harun Sheikhali <harun.sheikhali@agilebits.com>
2021-11-21 18:31:30 -08:00

26 lines
No EOL
742 B
Lua

local theme = require('nightfox.colors')
local themeColors = theme.init()
local colors = {
white = themeColors.fg_alt,
bg = themeColors.bg,
bg_highlight = themeColors.bg_highlight,
statusline_bg = themeColors.bg_alt,
normal = themeColors.blue,
insert = themeColors.cyan,
command = themeColors.orange,
visual = themeColors.magenta,
replace = themeColors.red,
diffAdd = themeColors.git.add,
diffModified = themeColors.git.change,
diffDeleted = themeColors.git.delete,
trace = themeColors.orange,
hint = themeColors.cyan,
info = themeColors.green_br,
error = themeColors.magenta_br,
warn = themeColors.orange,
floatBorder = themeColors.border_highlight,
selection_caret = themeColors.pink,
}
return colors