Rigellute / rigel

🌌 Colorscheme for vim, terminal, vscode and slack - based on the star Rigel ✨.
https://rigel.netlify.com/
512 stars 37 forks source link

[Request] Add theme for tmux #27

Closed sweenish closed 2 years ago

sweenish commented 2 years ago

Loving this theme; I want it everywhere.

idabmat commented 2 years ago

@sweenish I used https://github.com/edkolev/tmuxline.vim to generate one for me.

set -g status-justify "left"
set -g status "on"
set -g status-left-style "none"
set -g message-command-style "fg=#002635,bg=#1c8db2"
set -g status-right-style "none"
set -g pane-active-border-style "fg=#7eb2dd"
set -g status-style "none,bg=#00384d"
set -g message-style "fg=#002635,bg=#1c8db2"
set -g pane-border-style "fg=#1c8db2"
set -g status-right-length "100"
set -g status-left-length "100"
setw -g window-status-activity-style "none"
setw -g window-status-separator ""
setw -g window-status-style "none,fg=#b7cff9,bg=#00384d"
set -g status-left "#[fg=#002635,bg=#7eb2dd] #S #[fg=#7eb2dd,bg=#00384d,nobold,nounderscore,noitalics]î‚°"
set -g status-right "#[fg=#1c8db2,bg=#00384d,nobold,nounderscore,noitalics]#[fg=#002635,bg=#1c8db2] %Y-%m-%d  %H:%M #[fg=#7eb2dd,bg=#1c8db2,nobold,nounderscore,noitalics]#[fg=#002635,bg=#7eb2dd] #h "
setw -g window-status-format "#[fg=#b7cff9,bg=#00384d] #I #[fg=#b7cff9,bg=#00384d] #W "
setw -g window-status-current-format "#[fg=#00384d,bg=#1c8db2,nobold,nounderscore,noitalics]#[fg=#002635,bg=#1c8db2] #I #[fg=#002635,bg=#1c8db2] #W #[fg=#1c8db2,bg=#00384d,nobold,nounderscore,noitalics]"

YMMV

sweenish commented 2 years ago

It's been a good while since I first posted, but I finally had the time to re-work my config for this. What's interesting is that my output is a bit different.

set -g status-justify "left"
set -g status "on"
set -g status-left-style "none"
set -g message-command-style "fg=colour235,bg=colour31"
set -g status-right-style "none"
set -g pane-active-border-style "fg=colour110"
set -g status-style "none,bg=colour23"
set -g message-style "fg=colour235,bg=colour31"
set -g pane-border-style "fg=colour31"
set -g status-right-length "100"
set -g status-left-length "100"
setw -g window-status-activity-style "none"
setw -g window-status-separator ""
setw -g window-status-style "none,fg=colour153,bg=colour23"
set -g status-left "#[fg=colour235,bg=colour110] #S #[fg=colour110,bg=colour23,nobold,nounderscore,noitalics]î‚°"
set -g status-right "#[fg=colour31,bg=colour23,nobold,nounderscore,noitalics]#[fg=colour235,bg=colour31] %Y-%m-%d  %H:%M #[fg=colour110,bg=colour31,nobold,nounderscore,noitalics]#[fg=colour235,bg=colour110] #h "
setw -g window-status-format "#[fg=colour153,bg=colour23] #I #[fg=colour153,bg=colour23] #W "
setw -g window-status-current-format "#[fg=colour23,bg=colour31,nobold,nounderscore,noitalics]#[fg=colour235,bg=colour31] #I #[fg=colour235,bg=colour31] #W #[fg=colour31,bg=colour23,nobold,nounderscore,noitalics]"

I had to switch over to airline, and this is what I got as my output. Those garbage blocks are triangles on my screen (I'm using a nerd font). Funny enough, airline itself isn't using rendering the triangles in vim.

But, since it is possible to generate a compatible theme for tmux, I'll close this issue out.