|
| 1 | +# overriding widget colors |
| 2 | +widget color options with default values - sorted alphabetically: |
| 3 | +``` |
| 4 | +set -g @dracula-attached-clients-colors "cyan dark_gray" |
| 5 | +set -g @dracula-battery-colors "pink dark_gray" |
| 6 | +set -g @dracula-continuum-colors "cyan dark_gray" |
| 7 | +set -g @dracula-cpu-usage-colors "orange dark_gray" |
| 8 | +set -g @dracula-custom-plugin-colors "cyan dark_gray" |
| 9 | +set -g @dracula-cwd-colors "dark_gray white" |
| 10 | +set -g @dracula-fossil-colors "green dark_gray" |
| 11 | +set -g @dracula-git-colors "green dark_gray" |
| 12 | +set -g @dracula-gpu-power-draw-colors "green dark_gray" |
| 13 | +set -g @dracula-gpu-ram-usage-colors "cyan dark_gray" |
| 14 | +set -g @dracula-gpu-usage-colors "pink dark_gray" |
| 15 | +set -g @dracula-hg-colors "green dark_gray" |
| 16 | +set -g @dracula-kubernetes-context-colors "cyan dark_gray" |
| 17 | +set -g @dracula-libre-colors "white dark_gray" |
| 18 | +set -g @dracula-mpc-colors "green dark_gray" |
| 19 | +set -g @dracula-network-bandwidth-colors "cyan dark_gray" |
| 20 | +set -g @dracula-network-colors "cyan dark_gray" |
| 21 | +set -g @dracula-network-ping-colors "cyan dark_gray" |
| 22 | +set -g @dracula-network-vpn-colors "cyan dark_gray" |
| 23 | +set -g @dracula-playerctl-colors "green dark_gray" |
| 24 | +set -g @dracula-ram-usage-colors "cyan dark_gray" |
| 25 | +set -g @dracula-spotify-tui-colors "green dark_gray" |
| 26 | +set -g @dracula-ssh-session-colors "green dark_gray" |
| 27 | +set -g @dracula-synchronize-panes-colors "cyan dark_gray" |
| 28 | +set -g @dracula-terraform-colors "light_purple dark_gray" |
| 29 | +set -g @dracula-time-colors "dark_purple white" |
| 30 | +set -g @dracula-tmux-ram-usage-colors "cyan dark_gray" |
| 31 | +set -g @dracula-weather-colors "orange dark_gray" |
| 32 | +``` |
| 33 | + |
| 34 | +# overriding color variables |
| 35 | + |
| 36 | +all dracula colors can be overridden and new variables can be added. |
| 37 | +use the `set -g @dracula-colors "color variables go here"` option. put each new variable on a new line for readability or all variables on one line to save space. |
| 38 | + |
| 39 | +for a quick setup, add one of the following options to your config: |
| 40 | +**better readability** |
| 41 | +``` |
| 42 | +set -g @dracula-colors " |
| 43 | +# Dracula Color Pallette |
| 44 | +white='#f8f8f2' |
| 45 | +gray='#44475a' |
| 46 | +dark_gray='#282a36' |
| 47 | +light_purple='#bd93f9' |
| 48 | +dark_purple='#6272a4' |
| 49 | +cyan='#8be9fd' |
| 50 | +green='#50fa7b' |
| 51 | +orange='#ffb86c' |
| 52 | +red='#ff5555' |
| 53 | +pink='#ff79c6' |
| 54 | +yellow='#f1fa8c' |
| 55 | +" |
| 56 | +``` |
| 57 | +**saving space** |
| 58 | +``` |
| 59 | +set -g @dracula-colors " white='#f8f8f2' gray='#44475a' dark_gray='#282a36' light_purple='#bd93f9' dark_purple='#6272a4' cyan='#8be9fd' green='#50fa7b' orange='#ffb86c' red='#ff5555' pink='#ff79c6' yellow='#f1fa8c' " |
| 60 | +``` |
| 61 | +## plug and play themes |
| 62 | +as part of this directory there are some plug and play themes with explanations on how to use them: |
| 63 | +- [catppuccin](/docs/color_theming/catppuccin.md) |
| 64 | +- [gruvbox](/docs/color_theming/gruvbox.md) |
0 commit comments