123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- -- vim:fileencoding=utf-8:foldmethod=marker:foldmarker={{{,}}}
- local custom_colors = {
- -- {{{ Highlights
- -- {{{ Comments
- -- Comments color
- -- Default is "#4E4D5D"
- comment_fg = "#337922",
- -- }}}
- -- {{{ Diff
- diffChange_bg = "#464414",
- diffAdd_bg = "#103507",
- diffRemoved_bg = "#461414",
- -- }}}
- -- {{{ Nvim folds
- -- Neovim folds, not NvimTree or something else
- nvim_Fold_fg = "#77AABB",
- -- }}}
- -- {{{ nvimTree
- -- NOT opened folders
- -- Default is fg = "#89b4fa"
- nvimTreeFolderName_fg = "#90BFFF",
- -- Opened folders
- nvimTreeOpenedFolderName_bg = "#2a4a4a",
- -- New files for Git
- -- Default is fg = "#fae3b0"
- nvimTreeGitNew_fg = "#FAE3B0",
- -- }}}
- -- }}}
- -- {{{ indent-blankline
- -- If you want to add color - add it here and in configs/indent-blankline.lua
- IndentRed_fg = "#E06C75",
- IndentYellow_fg = "#E5C07B",
- IndentBlue_fg = "#61AFEF",
- IndentOrange_fg = "#D19A66",
- IndentGreen_fg = "#98C379",
- IndentViolet_fg = "#C678DD",
- IndentCyan_fg = "#56B6C2",
- -- }}}
- }
- return custom_colors
|