whiteout.theme 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #Bashtop "whiteout" 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]="#ff"
  11. # Main text color
  12. theme[main_fg]="#30"
  13. # Title color for boxes
  14. theme[title]="#10"
  15. # Highlight color for keyboard shortcuts
  16. theme[hi_fg]="#284d75"
  17. # Background color of selected item in processes box
  18. theme[selected_bg]="#15283d"
  19. # Foreground color of selected item in processes box
  20. theme[selected_fg]="#ff"
  21. # Color of inactive/disabled text
  22. theme[inactive_fg]="#dd"
  23. # Misc colors for processes box including mini cpu graphs, details memory graph and details status text
  24. theme[proc_misc]="#03521d"
  25. # Cpu box outline color
  26. theme[cpu_box]="#1a361e"
  27. # Memory/disks box outline color
  28. theme[mem_box]="#3d3c14"
  29. # Net up/down box outline color
  30. theme[net_box]="#1a1742"
  31. # Processes box outline color
  32. theme[proc_box]="#3b1515"
  33. # Box divider line and small boxes line color
  34. theme[div_line]="#80"
  35. # Temperature graph colors
  36. theme[temp_start]="#184567"
  37. theme[temp_mid]="#122c87"
  38. theme[temp_end]="#9e0061"
  39. # CPU graph colors
  40. theme[cpu_start]="#0b8e44"
  41. theme[cpu_mid]="#a49104"
  42. theme[cpu_end]="#8d0202"
  43. # Mem/Disk free meter
  44. theme[free_start]="#b0d090"
  45. theme[free_mid]="#70ba26"
  46. theme[free_end]="#496600"
  47. # Mem/Disk cached meter
  48. theme[cached_start]="#26c5ff"
  49. theme[cached_mid]="#74e6fc"
  50. theme[cached_end]="#0b1a29"
  51. # Mem/Disk available meter
  52. theme[available_start]="#ffb814"
  53. theme[available_mid]="#ffd77a"
  54. theme[available_end]="#292107"
  55. # Mem/Disk used meter
  56. theme[used_start]="#ff4769"
  57. theme[used_mid]="#d9626d"
  58. theme[used_end]="#3b1f1c"
  59. # Download graph colors
  60. theme[download_start]="#8d82de"
  61. theme[download_mid]="#413786"
  62. theme[download_end]="#130f29"
  63. # Upload graph colors
  64. theme[upload_start]="#f590f9"
  65. theme[upload_mid]="#722e76"
  66. theme[upload_end]="#2b062d"