# Grimicorn — Dark · tmux status theme
# Built from grimicorn-palette.md.
#
#   bg #0A0A0B  bg-alt #131316  bg-raised #1C1C20
#   fg #E7E5E4  muted #A7A39C
#   blue #2323FF  purple #A855F7  teal #22D3EE
#   green #A3E635  yellow #FACC15  salmon #FF2D9B
#
# 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=#0A0A0B,fg=#E7E5E4"

# Left: session name in a blue pill.
set -g status-left-length 40
set -g status-left "#[bg=#2323FF,fg=#0A0A0B,bold] #S #[bg=#0A0A0B,fg=#E7E5E4,nobold] "

# Right: date in a panel, time in a blue pill.
set -g status-right-length 80
set -g status-right "#[bg=#131316,fg=#22D3EE] %a %d %b #[bg=#2323FF,fg=#0A0A0B,bold] %H:%M "

# Windows: inactive on the secondary background, current raised + blue.
set -g window-status-separator ""
set -g window-status-format "#[bg=#131316,fg=#A7A39C] #I #W "
set -g window-status-current-format "#[bg=#1C1C20,fg=#2323FF,bold] #I #[fg=#E7E5E4]#W "
set -g window-status-activity-style "fg=#FACC15"
set -g window-status-bell-style "fg=#FF2D9B,bold"

# Pane borders: muted base, blue when active.
set -g pane-border-style "fg=#1C1C20"
set -g pane-active-border-style "fg=#2323FF"

# Command prompt / messages.
set -g message-style "bg=#2323FF,fg=#0A0A0B,bold"
set -g message-command-style "bg=#131316,fg=#2323FF"

# Copy-mode selection.
set -g mode-style "bg=#22D3EE,fg=#0A0A0B"

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

# Pane numbers (prefix + q).
set -g display-panes-colour "#A7A39C"
set -g display-panes-active-colour "#2323FF"
