kanagawa-wave.theme 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # Bashtop Kanagawa-wave (https://github.com/rebelot/kanagawa.nvim) theme
  2. # By: philikarus
  3. # Main bg
  4. theme[main_bg]="#16161D"
  5. # Main text color
  6. theme[main_fg]="#dcd7ba"
  7. # Title color for boxes
  8. theme[title]="#dcd7ba"
  9. # Highlight color for keyboard shortcuts
  10. theme[hi_fg]="#C34043"
  11. # Background color of selected item in processes box
  12. theme[selected_bg]="#223249"
  13. # Foreground color of selected item in processes box
  14. theme[selected_fg]="#dca561"
  15. # Color of inactive/disabled text
  16. theme[inactive_fg]="#727169"
  17. # Misc colors for processes box including mini cpu graphs, details memory graph and details status text
  18. theme[proc_misc]="#7aa89f"
  19. # Cpu box outline color
  20. theme[cpu_box]="#727169"
  21. # Memory/disks box outline color
  22. theme[mem_box]="#727169"
  23. # Net up/down box outline color
  24. theme[net_box]="#727169"
  25. # Processes box outline color
  26. theme[proc_box]="#727169"
  27. # Box divider line and small boxes line color
  28. theme[div_line]="#727169"
  29. # Temperature graph colors
  30. theme[temp_start]="#98BB6C"
  31. theme[temp_mid]="#DCA561"
  32. theme[temp_end]="#E82424"
  33. # CPU graph colors
  34. theme[cpu_start]="#98BB6C"
  35. theme[cpu_mid]="#DCA561"
  36. theme[cpu_end]="#E82424"
  37. # Mem/Disk free meter
  38. theme[free_start]="#E82424"
  39. theme[free_mid]="#C34043"
  40. theme[free_end]="#FF5D62"
  41. # Mem/Disk cached meter
  42. theme[cached_start]="#C0A36E"
  43. theme[cached_mid]="#DCA561"
  44. theme[cached_end]="#FF9E3B"
  45. # Mem/Disk available meter
  46. theme[available_start]="#938AA9"
  47. theme[available_mid]="#957FBB"
  48. theme[available_end]="#9CABCA"
  49. # Mem/Disk used meter
  50. theme[used_start]="#658594"
  51. theme[used_mid]="#7E9CDB"
  52. theme[used_end]="#7FB4CA"
  53. # Download graph colors
  54. theme[download_start]="#7E9CDB"
  55. theme[download_mid]="#938AA9"
  56. theme[download_end]="#957FBB"
  57. # Upload graph colors
  58. theme[upload_start]="#DCA561"
  59. theme[upload_mid]="#E6C384"
  60. theme[upload_end]="#E82424"
  61. # Process box color gradient for threads, mem and cpu usage
  62. theme[process_start]="#98BB6C"
  63. theme[process_mid]="#DCA561"
  64. theme[process_end]="#C34043"