colors.lua 1023 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. -- vim:fileencoding=utf-8:foldmethod=marker:foldmarker={{{,}}}
  2. local custom_colors = {
  3. -- {{{ Highlights
  4. -- {{{ Comments
  5. -- Comments color
  6. -- Default is "#4E4D5D"
  7. comment_fg = "#337922",
  8. -- }}}
  9. -- {{{ Diff
  10. diffChange_bg = "#464414",
  11. diffAdd_bg = "#103507",
  12. diffRemoved_bg = "#461414",
  13. -- }}}
  14. -- {{{ Nvim folds
  15. -- Neovim folds, not NvimTree or something else
  16. nvim_Fold_fg = "#77AABB",
  17. -- }}}
  18. -- {{{ nvimTree
  19. -- NOT opened folders
  20. -- Default is fg = "#89b4fa"
  21. nvimTreeFolderName_fg = "#90BFFF",
  22. -- Opened folders
  23. nvimTreeOpenedFolderName_bg = "#2a4a4a",
  24. -- New files for Git
  25. -- Default is fg = "#fae3b0"
  26. nvimTreeGitNew_fg = "#FAE3B0",
  27. -- }}}
  28. -- }}}
  29. -- {{{ indent-blankline
  30. -- If you want to add color - add it here and in configs/indent-blankline.lua
  31. IndentRed_fg = "#E06C75",
  32. IndentYellow_fg = "#E5C07B",
  33. IndentBlue_fg = "#61AFEF",
  34. IndentOrange_fg = "#D19A66",
  35. IndentGreen_fg = "#98C379",
  36. IndentViolet_fg = "#C678DD",
  37. IndentCyan_fg = "#56B6C2",
  38. -- }}}
  39. }
  40. return custom_colors