gotham.theme 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # btop theme with the Gotham colorscheme for vim/neovim
  2. # Credit to Andrea Lopardi (https://github.com/whatyouhide/vim-gotham)
  3. # Adapted by jrebs (https://github.com/jrebs)
  4. # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255"
  5. # example for white: "#ffffff", "#ff" or "255 255 255".
  6. # All graphs and meters can be gradients
  7. # For single color graphs leave "mid" and "end" variable empty.
  8. # Use "start" and "end" variables for two color gradient
  9. # Use "start", "mid" and "end" for three color gradient
  10. # Main background, empty for terminal default, need to be empty if you want transparent background
  11. theme[main_bg]="#2E3440"
  12. # Main text color
  13. theme[main_fg]="#99d1ce"
  14. # Title color for boxes
  15. theme[title]="#2aa889"
  16. # Highlight color for keyboard shortcuts
  17. theme[hi_fg]="#ffffff"
  18. # Background color of selected item in processes box
  19. theme[selected_bg]="#0a3749"
  20. # Foreground color of selected item in processes box
  21. theme[selected_fg]="#99d1ce"
  22. # Color of inactive/disabled text
  23. #theme[inactive_fg]="#a89984"
  24. theme[inactive_fg]="#403b34"
  25. # Misc colors for processes box including mini cpu graphs, details memory graph and details status text
  26. theme[proc_misc]="#a89984"
  27. # Cpu box outline color
  28. theme[cpu_box]="#99d1ce"
  29. # Memory/disks box outline color
  30. theme[mem_box]="#99d1ce"
  31. # Net up/down box outline color
  32. theme[net_box]="#99d1ce"
  33. # Processes box outline color
  34. theme[proc_box]="#99d1ce"
  35. # Box divider line and small boxes line color
  36. theme[div_line]="#4C566A"
  37. # Temperature graph colors
  38. theme[temp_start]="#2aa889"
  39. theme[temp_mid]="#99d1ce"
  40. theme[temp_end]="#ffffff"
  41. # CPU graph colors
  42. theme[cpu_start]="#2aa889"
  43. theme[cpu_mid]="#99d1ce"
  44. theme[cpu_end]="#ffffff"
  45. # Mem/Disk free meter
  46. theme[free_start]="#2aa889"
  47. theme[free_mid]="#99d1ce"
  48. theme[free_end]="#ffffff"
  49. # Mem/Disk cached meter
  50. theme[cached_start]="#2aa889"
  51. theme[cached_mid]="#99d1ce"
  52. theme[cached_end]="#ffffff"
  53. # Mem/Disk available meter
  54. theme[available_start]="#2aa889"
  55. theme[available_mid]="#99d1ce"
  56. theme[available_end]="#ffffff"
  57. # Mem/Disk used meter
  58. theme[used_start]="#2aa889"
  59. theme[used_mid]="#99d1ce"
  60. theme[used_end]="#ffffff"
  61. # Download graph colors
  62. theme[download_start]="#2aa889"
  63. theme[download_mid]="#99d1ce"
  64. theme[download_end]="#ffffff"
  65. # Upload graph colors
  66. theme[upload_start]="#2aa889"
  67. theme[upload_mid]="#99d1ce"
  68. theme[upload_end]="#ffffff"