greyscale.theme 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #Bashtop grayscale theme
  2. #by aristocratos
  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]="#00"
  11. # Main text color
  12. theme[main_fg]="#bb"
  13. # Title color for boxes
  14. theme[title]="#cc"
  15. # Highlight color for keyboard shortcuts
  16. theme[hi_fg]="#90"
  17. # Background color of selected item in processes box
  18. theme[selected_bg]="#ff"
  19. # Foreground color of selected item in processes box
  20. theme[selected_fg]="#00"
  21. # Color of inactive/disabled text
  22. theme[inactive_fg]="#30"
  23. # Misc colors for processes box including mini cpu graphs, details memory graph and details status text
  24. theme[proc_misc]="#90"
  25. # Cpu box outline color
  26. theme[cpu_box]="#90"
  27. # Memory/disks box outline color
  28. theme[mem_box]="#90"
  29. # Net up/down box outline color
  30. theme[net_box]="#90"
  31. # Processes box outline color
  32. theme[proc_box]="#90"
  33. # Box divider line and small boxes line color
  34. theme[div_line]="#30"
  35. # Temperature graph colors
  36. theme[temp_start]="#50"
  37. theme[temp_mid]=""
  38. theme[temp_end]="#ff"
  39. # CPU graph colors
  40. theme[cpu_start]="#50"
  41. theme[cpu_mid]=""
  42. theme[cpu_end]="#ff"
  43. # Mem/Disk free meter
  44. theme[free_start]="#50"
  45. theme[free_mid]=""
  46. theme[free_end]="#ff"
  47. # Mem/Disk cached meter
  48. theme[cached_start]="#50"
  49. theme[cached_mid]=""
  50. theme[cached_end]="#ff"
  51. # Mem/Disk available meter
  52. theme[available_start]="#50"
  53. theme[available_mid]=""
  54. theme[available_end]="#ff"
  55. # Mem/Disk used meter
  56. theme[used_start]="#50"
  57. theme[used_mid]=""
  58. theme[used_end]="#ff"
  59. # Download graph colors
  60. theme[download_start]="#30"
  61. theme[download_mid]=""
  62. theme[download_end]="#ff"
  63. # Upload graph colors
  64. theme[upload_start]="#30"
  65. theme[upload_mid]=""
  66. theme[upload_end]="#ff"