paper.theme 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # Bashtop Paper theme
  2. # c/o @s6muel
  3. # inspired by @yorickpeterse's vim-paper theme at https://gitlab.com/yorickpeterse/vim-paper
  4. #
  5. # Main background, empty for terminal default, need to be empty if you want transparent background
  6. theme[main_bg]="#F2EEDE"
  7. # Main text color
  8. theme[main_fg]="#00"
  9. # Title color for boxes
  10. theme[title]="#00"
  11. # Highlight color for keyboard shortcuts
  12. theme[hi_fg]="#CC3E28"
  13. # Background color of selected item in processes box
  14. theme[selected_bg]="#D8D5C7"
  15. # Foreground color of selected item in processes box
  16. theme[selected_fg]="#00"
  17. # Color of inactive/disabled text
  18. theme[inactive_fg]="#d8d5c7"
  19. # Misc colors for processes box including mini cpu graphs, details memory graph and details status text
  20. theme[proc_misc]="#00"
  21. # Cpu box outline color
  22. theme[cpu_box]="#00"
  23. # Memory/disks box outline color
  24. theme[mem_box]="#00"
  25. # Net up/down box outline color
  26. theme[net_box]="#00"
  27. # Processes box outline color
  28. theme[proc_box]="#00"
  29. # Box divider line and small boxes line color
  30. theme[div_line]="#00"
  31. # Temperature graph colors
  32. theme[temp_start]="#55"
  33. theme[temp_mid]="#00"
  34. theme[temp_end]="#CC3E28"
  35. # CPU graph colors
  36. theme[cpu_start]="#55"
  37. theme[cpu_mid]="#00"
  38. theme[cpu_end]="#CC3E28"
  39. # Mem/Disk free meter
  40. theme[free_start]="#216609"
  41. theme[free_mid]=""
  42. theme[free_end]="#216609"
  43. # Mem/Disk cached meter
  44. theme[cached_start]="#1e6fcc"
  45. theme[cached_mid]=""
  46. theme[cached_end]="#1e6fcc"
  47. # Mem/Disk available meter
  48. theme[available_start]="#216609"
  49. theme[available_mid]=""
  50. theme[available_end]="#216609"
  51. # Mem/Disk used meter
  52. theme[used_start]="#CC3E28"
  53. theme[used_mid]=""
  54. theme[used_end]="#CC3E28"
  55. # Download graph colors
  56. theme[download_start]="#55"
  57. theme[download_mid]="#00"
  58. theme[download_end]="#CC3E28"
  59. # Upload graph colors
  60. theme[upload_start]="#55"
  61. theme[upload_mid]="#00"
  62. theme[upload_end]="#CC3E28"