night-owl.theme 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. #Bashtop theme with night-owl colors
  2. #by zkourouma
  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]="#011627"
  11. # Main text color
  12. theme[main_fg]="#d6deeb"
  13. # Title color for boxes
  14. theme[title]="#ffffff"
  15. # Highlight color for keyboard shortcuts
  16. theme[hi_fg]="#addb67"
  17. # Background color of selected items
  18. theme[selected_bg]="#000000"
  19. # Foreground color of selected items
  20. theme[selected_fg]="#ffeb95"
  21. # Color of inactive/disabled text
  22. theme[inactive_fg]="#575656"
  23. # Color of text appearing on top of graphs, i.e uptime and current network graph scaling
  24. theme[graph_text]="#585858"
  25. # Misc colors for processes box including mini cpu graphs, details memory graph and details status text
  26. theme[proc_misc]="#22da6e"
  27. # Cpu box outline color
  28. theme[cpu_box]="#ffffff"
  29. # Memory/disks box outline color
  30. theme[mem_box]="#ffffff"
  31. # Net up/down box outline color
  32. theme[net_box]="#ffffff"
  33. # Processes box outline color
  34. theme[proc_box]="#ffffff"
  35. # Box divider line and small boxes line color
  36. theme[div_line]="#ffffff"
  37. # Temperature graph colors
  38. theme[temp_start]="#82aaff"
  39. theme[temp_mid]="#c792ea"
  40. theme[temp_end]="#fb4394"
  41. # CPU graph colors
  42. theme[cpu_start]="#22da6e"
  43. theme[cpu_mid]="#addb67"
  44. theme[cpu_end]="#ef5350"
  45. # Mem/Disk free meter
  46. theme[free_start]="#4e5900"
  47. theme[free_mid]=""
  48. theme[free_end]="#22da6e"
  49. # Mem/Disk cached meter
  50. theme[cached_start]="#82aaff"
  51. theme[cached_mid]=""
  52. theme[cached_end]="#82aaff"
  53. # Mem/Disk available meter
  54. theme[available_start]="#addb67"
  55. theme[available_mid]=""
  56. theme[available_end]="#ffeb95"
  57. # Mem/Disk used meter
  58. theme[used_start]="#ef5350"
  59. theme[used_mid]=""
  60. theme[used_end]="#ef5350"
  61. # Download graph colors
  62. theme[download_start]="#3d4070"
  63. theme[download_mid]="#6c71c4"
  64. theme[download_end]="#a3a8f7"
  65. # Upload graph colors
  66. theme[upload_start]="#701c45"
  67. theme[upload_mid]="#c792ea"
  68. theme[upload_end]="#c792ea"