mirror of
https://github.com/TECHNOFAB11/tmux2k.git
synced 2025-12-11 23:50:08 +01:00
feat: make colors customizable
This commit is contained in:
parent
d9ed431121
commit
a16c8bc360
1 changed files with 15 additions and 15 deletions
|
|
@ -16,21 +16,21 @@ show_flags=$(get_tmux_option "@tmux2k-show-flags" true)
|
||||||
IFS=' ' read -r -a lplugins <<<"$(get_tmux_option '@tmux2k-left-plugins' 'git cpu ram')"
|
IFS=' ' read -r -a lplugins <<<"$(get_tmux_option '@tmux2k-left-plugins' 'git cpu ram')"
|
||||||
IFS=' ' read -r -a rplugins <<<"$(get_tmux_option '@tmux2k-right-plugins' 'battery network time')"
|
IFS=' ' read -r -a rplugins <<<"$(get_tmux_option '@tmux2k-right-plugins' 'battery network time')"
|
||||||
|
|
||||||
text='#282a36'
|
text=$(get_tmux_option "@tmux2k-text" '#282a36')
|
||||||
bg_main='#15152a'
|
bg_main=$(get_tmux_option "@tmux2k-bg-main" '#15152a')
|
||||||
bg_alt='#45455a'
|
bg_alt=$(get_tmux_option "@tmux2k-bg-alt" '#45455a')
|
||||||
black='#0a0a0f'
|
black=$(get_tmux_option "@tmux2k-black" '#0a0a0f')
|
||||||
white='#d5d5da'
|
white=$(get_tmux_option "@tmux2k-white" '#d5d5da')
|
||||||
red='#ff001f'
|
red=$(get_tmux_option "@tmux2k-red" '#ff001f')
|
||||||
light_red='#ff0055'
|
light_red=$(get_tmux_option "@tmux2k-light-red" '#ff0055')
|
||||||
green='#3dd50a'
|
green=$(get_tmux_option "@tmux2k-green" '#3dd50a')
|
||||||
light_green='#ccffcc'
|
light_green=$(get_tmux_option "@tmux2k-light-green" '#ccffcc')
|
||||||
blue='#1688f0'
|
blue=$(get_tmux_option "@tmux2k-blue" '#1688f0')
|
||||||
light_blue='#11dddd'
|
light_blue=$(get_tmux_option "@tmux2k-light-blue" '#11dddd')
|
||||||
yellow='#ffb86c'
|
yellow=$(get_tmux_option "@tmux2k-yellow" '#ffb86c')
|
||||||
light_yellow='#ffd21a'
|
light_yellow=$(get_tmux_option "@tmux2k-light-yellow" '#ffd21a')
|
||||||
purple='#bf58ff'
|
purple=$(get_tmux_option "@tmux2k-purple" '#bf58ff')
|
||||||
light_purple='#ff65c6'
|
light_purple=$(get_tmux_option "@tmux2k-light-purple" '#ff65c6')
|
||||||
|
|
||||||
declare -A plugin_colors=(
|
declare -A plugin_colors=(
|
||||||
["git"]="green text"
|
["git"]="green text"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue