adapta.theme 2.2 KB

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