catppuccin_latte.toml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # Default colors
  2. [colors.primary]
  3. background = '#EFF1F5' # base
  4. foreground = '#4C4F69' # text
  5. # Bright and dim foreground colors
  6. dim_foreground = '#4C4F69' # text
  7. bright_foreground = '#4C4F69' # text
  8. # Cursor colors
  9. [colors.cursor]
  10. text = '#EFF1F5' # base
  11. cursor = '#DC8A78' # rosewater
  12. [colors.vi_mode_cursor]
  13. text = '#EFF1F5' # base
  14. cursor = '#7287FD' # lavender
  15. # Search colors
  16. [colors.search.matches]
  17. foreground = '#EFF1F5' # base
  18. background = '#6C6F85' # subtext0
  19. [colors.search.focused_match]
  20. foreground = '#EFF1F5' # base
  21. background = '#40A02B' # green
  22. [colors.footer_bar]
  23. foreground = '#EFF1F5' # base
  24. background = '#6C6F85' # subtext0
  25. # Keyboard regex hints
  26. [colors.hints.start]
  27. foreground = '#EFF1F5' # base
  28. background = '#DF8E1D' # yellow
  29. [colors.hints.end]
  30. foreground = '#EFF1F5' # base
  31. background = '#6C6F85' # subtext0
  32. # Selection colors
  33. [colors.selection]
  34. text = '#EFF1F5' # base
  35. background = '#DC8A78' # rosewater
  36. # Normal colors
  37. [colors.normal]
  38. black = '#5C5F77' # subtext1
  39. red = '#D20F39' # red
  40. green = '#40A02B' # green
  41. yellow = '#DF8E1D' # yellow
  42. blue = '#1E66F5' # blue
  43. magenta = '#EA76CB' # pink
  44. cyan = '#179299' # teal
  45. white = '#ACB0BE' # surface2
  46. # Bright colors
  47. [colors.bright]
  48. black = '#6C6F85' # subtext0
  49. red = '#D20F39' # red
  50. green = '#40A02B' # green
  51. yellow = '#DF8E1D' # yellow
  52. blue = '#1E66F5' # blue
  53. magenta = '#EA76CB' # pink
  54. cyan = '#179299' # teal
  55. white = '#BCC0CC' # surface1
  56. # Dim colors
  57. [colors.dim]
  58. black = '#5C5F77' # subtext1
  59. red = '#D20F39' # red
  60. green = '#40A02B' # green
  61. yellow = '#DF8E1D' # yellow
  62. blue = '#1E66F5' # blue
  63. magenta = '#EA76CB' # pink
  64. cyan = '#179299' # teal
  65. white = '#ACB0BE' # surface2