dusklight.theme 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #Bpytop theme comprised of blues, oranges, cyan, and yellow.
  2. #by Drazil100
  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]="#04142E"
  11. # Main text color
  12. theme[main_fg]="#99DFFF"
  13. # Title color for boxes
  14. theme[title]="#99FFFF"
  15. # Highlight color for keyboard shortcuts
  16. theme[hi_fg]="#FF7F00"
  17. # Background color of selected item in processes box
  18. theme[selected_bg]="#722B01"
  19. # Foreground color of selected item in processes box
  20. theme[selected_fg]="#99FFFF"
  21. # Color of inactive/disabled text
  22. theme[inactive_fg]="#052E51"
  23. # Color of text appearing on top of graphs, i.e uptime and current network graph scaling
  24. theme[graph_text]="#79A1B4"
  25. # Background color of the percentage meters
  26. theme[meter_bg]="#052E51"
  27. # Misc colors for processes box including mini cpu graphs, details memory graph and details status text
  28. theme[proc_misc]="#B46718"
  29. # Cpu box outline color
  30. theme[cpu_box]="#00FFFF"
  31. # Memory/disks box outline color
  32. theme[mem_box]="#00FFFF"
  33. # Net up/down box outline color
  34. theme[net_box]="#00FFFF"
  35. # Processes box outline color
  36. theme[proc_box]="#00FFFF"
  37. # Box divider line and small boxes line color
  38. theme[div_line]="#A55800"
  39. # Temperature graph colors
  40. theme[temp_start]="#00ADFF"
  41. theme[temp_mid]="#00FFFF"
  42. theme[temp_end]="#FFF86B"
  43. # CPU graph colors
  44. theme[cpu_start]="#00D4FF"
  45. theme[cpu_mid]="#FFF86B"
  46. theme[cpu_end]="#FF7F00"
  47. # Mem/Disk free meter
  48. theme[free_start]="#0187CB"
  49. theme[free_mid]=""
  50. theme[free_end]=""
  51. # Mem/Disk cached meter
  52. theme[cached_start]="#B4BB63"
  53. theme[cached_mid]=""
  54. theme[cached_end]=""
  55. # Mem/Disk available meter
  56. theme[available_start]="#01C0CB"
  57. theme[available_mid]=""
  58. theme[available_end]=""
  59. # Mem/Disk used meter
  60. theme[used_start]="#B46718"
  61. theme[used_mid]=""
  62. theme[used_end]=""
  63. # Download graph colors
  64. theme[download_start]="#009EFF"
  65. theme[download_mid]=""
  66. theme[download_end]="#00FFFF"
  67. # Upload graph colors
  68. theme[upload_start]="#FF7F00"
  69. theme[upload_mid]=""
  70. theme[upload_end]="#FFF86B"