catppuccin_mocha.toml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. [colors.primary]
  2. background = '#1E1E2E' # base
  3. foreground = '#CDD6F4' # text
  4. # Bright and dim foreground colors
  5. dim_foreground = '#CDD6F4' # text
  6. bright_foreground = '#CDD6F4' # text
  7. # Cursor colors
  8. [colors.cursor]
  9. text = '#1E1E2E' # base
  10. cursor = '#F5E0DC' # rosewater
  11. [colors.vi_mode_cursor]
  12. text = '#1E1E2E' # base
  13. cursor = '#B4BEFE' # lavender
  14. # Search colors
  15. [colors.search.matches]
  16. foreground = '#1E1E2E' # base
  17. background = '#A6ADC8' # subtext0
  18. [colors.search.focused_match]
  19. foreground = '#1E1E2E' # base
  20. background = '#A6E3A1' # green
  21. [colors.footer_bar]
  22. foreground = '#1E1E2E' # base
  23. background = '#A6ADC8' # subtext0
  24. # Keyboard regex hints
  25. [colors.hints.start]
  26. foreground = '#1E1E2E' # base
  27. background = '#F9E2AF' # yellow
  28. [colors.hints.end]
  29. foreground = '#1E1E2E' # base
  30. background = '#A6ADC8' # subtext0
  31. # Selection colors
  32. [colors.selection]
  33. text = '#1E1E2E' # base
  34. background = '#F5E0DC' # rosewater
  35. # Normal colors
  36. [colors.normal]
  37. black = '#45475A' # surface1
  38. red = '#F38BA8' # red
  39. green = '#A6E3A1' # green
  40. yellow = '#F9E2AF' # yellow
  41. blue = '#89B4FA' # blue
  42. magenta = '#F5C2E7' # pink
  43. cyan = '#94E2D5' # teal
  44. white = '#BAC2DE' # subtext1
  45. # Bright colors
  46. [colors.bright]
  47. black = '#585B70' # surface2
  48. red = '#F38BA8' # red
  49. green = '#A6E3A1' # green
  50. yellow = '#F9E2AF' # yellow
  51. blue = '#89B4FA' # blue
  52. magenta = '#F5C2E7' # pink
  53. cyan = '#94E2D5' # teal
  54. white = '#A6ADC8' # subtext0
  55. # Dim colors
  56. [colors.dim]
  57. black = '#45475A' # surface1
  58. red = '#F38BA8' # red
  59. green = '#A6E3A1' # green
  60. yellow = '#F9E2AF' # yellow
  61. blue = '#89B4FA' # blue
  62. magenta = '#F5C2E7' # pink
  63. cyan = '#94E2D5' # teal
  64. white = '#BAC2DE' # subtext1