mirror of
https://github.com/TECHNOFAB11/tmux2k.git
synced 2025-12-11 23:50:08 +01:00
feat: add duo theme
This commit is contained in:
parent
db506a6181
commit
bb03af5b93
1 changed files with 35 additions and 16 deletions
|
|
@ -77,6 +77,25 @@ set_theme() {
|
|||
purple=$(get_tmux_option "@tmux2k-purple" '#b6a0fe')
|
||||
light_purple=$(get_tmux_option "@tmux2k-light-purple" '#f5bde6')
|
||||
;;
|
||||
"duo")
|
||||
duo_bg=$(get_tmux_option "@tmux2k-duo-bg" '#000000')
|
||||
duo_fg=$(get_tmux_option "@tmux2k-duo-fg" '#ffffff')
|
||||
text=$(get_tmux_option "@tmux2k-white" "$duo_bg")
|
||||
bg_main=$(get_tmux_option "@tmux2k-bg-main" "$duo_bg")
|
||||
bg_alt=$(get_tmux_option "@tmux2k-bg-alt" "$duo_bg")
|
||||
black=$(get_tmux_option "@tmux2k-black" "$duo_bg")
|
||||
white=$(get_tmux_option "@tmux2k-white" "$duo_fg")
|
||||
red=$(get_tmux_option "@tmux2k-red" "$duo_fg")
|
||||
light_red=$(get_tmux_option "@tmux2k-light-red" "$duo_fg")
|
||||
green=$(get_tmux_option "@tmux2k-green" "$duo_fg")
|
||||
light_green=$(get_tmux_option "@tmux2k-light-green" "$duo_fg")
|
||||
blue=$(get_tmux_option "@tmux2k-blue" "$duo_fg")
|
||||
light_blue=$(get_tmux_option "@tmux2k-light-blue" "$duo_fg")
|
||||
yellow=$(get_tmux_option "@tmux2k-yellow" "$duo_fg")
|
||||
light_yellow=$(get_tmux_option "@tmux2k-light-yellow" "$duo_fg")
|
||||
purple=$(get_tmux_option "@tmux2k-purple" "$duo_fg")
|
||||
light_purple=$(get_tmux_option "@tmux2k-light-purple" "$duo_fg")
|
||||
;;
|
||||
"gruvbox")
|
||||
bg_main=$(get_tmux_option "@tmux2k-bg-main" '#282828')
|
||||
bg_alt=$(get_tmux_option "@tmux2k-bg-alt" '#3c3836')
|
||||
|
|
@ -93,22 +112,6 @@ set_theme() {
|
|||
purple=$(get_tmux_option "@tmux2k-purple" '#b162d6')
|
||||
light_purple=$(get_tmux_option "@tmux2k-light-purple" '#f386cb')
|
||||
;;
|
||||
"onedark")
|
||||
bg_main=$(get_tmux_option "@tmux2k-bg-main" '#282c34')
|
||||
bg_alt=$(get_tmux_option "@tmux2k-bg-alt" '#353b45')
|
||||
black=$(get_tmux_option "@tmux2k-black" '#2d3139')
|
||||
white=$(get_tmux_option "@tmux2k-white" '#abb2bf')
|
||||
red=$(get_tmux_option "@tmux2k-red" '#e06c75')
|
||||
light_red=$(get_tmux_option "@tmux2k-light-red" '#e06c75')
|
||||
green=$(get_tmux_option "@tmux2k-green" '#98c379')
|
||||
light_green=$(get_tmux_option "@tmux2k-light-green" '#98c379')
|
||||
blue=$(get_tmux_option "@tmux2k-blue" '#61afef')
|
||||
light_blue=$(get_tmux_option "@tmux2k-light-blue" '#61afef')
|
||||
yellow=$(get_tmux_option "@tmux2k-yellow" '#e5c07b')
|
||||
light_yellow=$(get_tmux_option "@tmux2k-light-yellow" '#e5c07b')
|
||||
purple=$(get_tmux_option "@tmux2k-purple" '#c678fd')
|
||||
light_purple=$(get_tmux_option "@tmux2k-light-purple" '#f678cd')
|
||||
;;
|
||||
"monokai")
|
||||
bg_main=$(get_tmux_option "@tmux2k-bg-main" '#272822')
|
||||
bg_alt=$(get_tmux_option "@tmux2k-bg-alt" '#3e3d32')
|
||||
|
|
@ -125,6 +128,22 @@ set_theme() {
|
|||
purple=$(get_tmux_option "@tmux2k-purple" '#ae81ff')
|
||||
light_purple=$(get_tmux_option "@tmux2k-light-purple" '#fe81ff')
|
||||
;;
|
||||
"onedark")
|
||||
bg_main=$(get_tmux_option "@tmux2k-bg-main" '#282c34')
|
||||
bg_alt=$(get_tmux_option "@tmux2k-bg-alt" '#353b45')
|
||||
black=$(get_tmux_option "@tmux2k-black" '#2d3139')
|
||||
white=$(get_tmux_option "@tmux2k-white" '#abb2bf')
|
||||
red=$(get_tmux_option "@tmux2k-red" '#e06c75')
|
||||
light_red=$(get_tmux_option "@tmux2k-light-red" '#e06c75')
|
||||
green=$(get_tmux_option "@tmux2k-green" '#98c379')
|
||||
light_green=$(get_tmux_option "@tmux2k-light-green" '#98c379')
|
||||
blue=$(get_tmux_option "@tmux2k-blue" '#61afef')
|
||||
light_blue=$(get_tmux_option "@tmux2k-light-blue" '#61afef')
|
||||
yellow=$(get_tmux_option "@tmux2k-yellow" '#e5c07b')
|
||||
light_yellow=$(get_tmux_option "@tmux2k-light-yellow" '#e5c07b')
|
||||
purple=$(get_tmux_option "@tmux2k-purple" '#c678fd')
|
||||
light_purple=$(get_tmux_option "@tmux2k-light-purple" '#f678cd')
|
||||
;;
|
||||
esac
|
||||
|
||||
if $icons_only; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue