# Grimicorn — Dark · tmux status theme
# Built from grimicorn-palette.md.
#
#   bg #253039  bg-alt #2E3C44  bg-raised #3C4C55
#   fg #E5E5E5  muted #BFBFBF
#   blue #83AFE5  purple #9A93E1  teal #80C1CA
#   green #A9CE93  yellow #DADA93  salmon #DD9787
#
# Install: save anywhere, then add to your ~/.tmux.conf:
#   source-file ~/path/to/grimicorn-tmux-dark.conf
# Reload with: tmux source-file ~/.tmux.conf

set -g status on
set -g status-interval 5
set -g status-justify left
set -g status-style "bg=#253039,fg=#E5E5E5"

# Left: session name in a blue pill.
set -g status-left-length 40
set -g status-left "#[bg=#83AFE5,fg=#253039,bold] #S #[bg=#253039,fg=#E5E5E5,nobold] "

# Right: date in a panel, time in a blue pill.
set -g status-right-length 80
set -g status-right "#[bg=#2E3C44,fg=#80C1CA] %a %d %b #[bg=#83AFE5,fg=#253039,bold] %H:%M "

# Windows: inactive on the secondary background, current raised + blue.
set -g window-status-separator ""
set -g window-status-format "#[bg=#2E3C44,fg=#BFBFBF] #I #W "
set -g window-status-current-format "#[bg=#3C4C55,fg=#83AFE5,bold] #I #[fg=#E5E5E5]#W "
set -g window-status-activity-style "fg=#DADA93"
set -g window-status-bell-style "fg=#DD9787,bold"

# Pane borders: muted base, blue when active.
set -g pane-border-style "fg=#3C4C55"
set -g pane-active-border-style "fg=#83AFE5"

# Command prompt / messages.
set -g message-style "bg=#83AFE5,fg=#253039,bold"
set -g message-command-style "bg=#2E3C44,fg=#83AFE5"

# Copy-mode selection.
set -g mode-style "bg=#80C1CA,fg=#253039"

# Clock mode (prefix + t).
set -g clock-mode-colour "#83AFE5"
set -g clock-mode-style 24

# Pane numbers (prefix + q).
set -g display-panes-colour "#BFBFBF"
set -g display-panes-active-colour "#83AFE5"
