matcha-dark-sea.theme 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. #Bashtop matcha-dark-sea theme
  2. #by TheCynicalTeam
  3. # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255"
  4. # example for white: "#FFFFFF", "#ff" or "255 255 255".
  5. # All graphs and meters can be gradients
  6. # For single color graphs leave "mid" and "end" variable empty.
  7. # Use "start" and "end" variables for two color gradient
  8. # Use "start", "mid" and "end" for three color gradient
  9. # Main background, empty for terminal default, need to be empty if you want transparent background
  10. theme[main_bg]=""
  11. # Main text color
  12. theme[main_fg]="#F8F8F2"
  13. # Title color for boxes
  14. theme[title]="#F8F8F2"
  15. # Highlight color for keyboard shortcuts
  16. theme[hi_fg]="#2eb398"
  17. # Background color of selected item in processes box
  18. theme[selected_bg]="#0d493d"
  19. # Foreground color of selected item in processes box
  20. theme[selected_fg]="#F8F8F2"
  21. # Color of inactive/disabled text
  22. theme[inactive_fg]="#595647"
  23. # Color of text appearing on top of graphs, i.e uptime and current network graph scaling
  24. theme[graph_text]="#797667"
  25. # Misc colors for processes box including mini cpu graphs, details memory graph and details status text
  26. theme[proc_misc]="#33b165"
  27. # Cpu box outline color
  28. theme[cpu_box]="#75715E"
  29. # Memory/disks box outline color
  30. theme[mem_box]="#75715E"
  31. # Net up/down box outline color
  32. theme[net_box]="#75715E"
  33. # Processes box outline color
  34. theme[proc_box]="#75715E"
  35. # Box divider line and small boxes line color
  36. theme[div_line]="#595647"
  37. # Temperature graph colors
  38. theme[temp_start]="#7976B7"
  39. theme[temp_mid]="#D8B8B2"
  40. theme[temp_end]="#33b165"
  41. # CPU graph colors
  42. theme[cpu_start]="#33b165"
  43. theme[cpu_mid]="#F8F8F2" #2eb398"
  44. theme[cpu_end]="#2eb398"
  45. # Mem/Disk free meter
  46. theme[free_start]="#75715E"
  47. theme[free_mid]="#a9c474"
  48. theme[free_end]="#e2f5bc"
  49. # Mem/Disk cached meter
  50. theme[cached_start]="#75715E"
  51. theme[cached_mid]="#66D9EF"
  52. theme[cached_end]="#aae7f2"
  53. # Mem/Disk available meter
  54. theme[available_start]="#75715E"
  55. theme[available_mid]="#E6DB74"
  56. theme[available_end]="#f2ecb6"
  57. # Mem/Disk used meter
  58. theme[used_start]="#75715E"
  59. theme[used_mid]="#2eb398"
  60. theme[used_end]="#33b165"
  61. # Download graph colors
  62. theme[download_start]="#2d2042"
  63. theme[download_mid]="#2eb398"
  64. theme[download_end]="#33b165"
  65. # Upload graph colors
  66. theme[upload_start]="#0d493d"
  67. theme[upload_mid]="#2eb398"
  68. theme[upload_end]="#33b165"