/spaceduck-terminal

🚀 🦆Spaceduck theme but for terminal!

Primary LanguageCSSMIT LicenseMIT

Spaceduck terminal theme 🚀🦆

A intergalactic space theme for your terminal! This is the spaceduck repo for terminal themes. If you're looking for other applications here's the link to the spaceduck home.

Terminal screenshot of iTerm2 terminal with neofetch program ran

Currently Ported Terminals

Iterm2

To get the theme into Iterm, download the spaceduck.itermcolors file and import it into your settings.

Terminal.app MacOS

To get the theme into the Mac Terminal app, download the spaceduck.terminal file and import it into your settings.

Alacritty

The color scheme for Alacritty is in the spaceduck.yml file or you can copy it here!

# Space Duck
colors:
  # Default colors
  primary:
    background: '#0f111b'
    foreground: '#ecf0c1'
  # Normal colors
  normal:
    black:   '#000000'
    red:     '#e33400'
    green:   '#5ccc96'
    yellow:  '#b3a1e6'
    blue:    '#00a3cc'
    magenta: '#f2ce00'
    cyan:    '#7a5ccc'
    white:   '#686f9a'

  # Bright colors
  bright:
    black:   '#686f9a'
    red:     '#e33400'
    green:   '#5ccc96'
    yellow:  '#b3a1e6'
    blue:    '#00a3cc'
    magenta: '#f2ce00'
    cyan:    '#7a5ccc'
    white:   '#f0f1ce'

Kitty

The Color theme for Kitty is in the spaceduck.conf file or you can copy it here!

  background #0f111b
  foreground #ecf0c1
  cursor #ecf0c1
  selection_background #686f9a
  color0 #000000
  color8 #686f9a
  color1 #e33400
  color9 #e33400
  color2 #5ccc96
  color10 #5ccc96
  color3 #b3a1e6
  color11 #b3a1e6
  color4 #00a3cc
  color12 #00a3cc
  color5 #f2ce00
  color13 #f2ce00
  color6 #7a5ccc
  color14 #7a5ccc
  color7 #686f9a
  color15 #f0f1ce
  selection_foreground #ffffff

Windows Terminal

Color theme is in the spaceduck_windowsterminal.json file or you can copy it here! Put it in your Windows Terminal settings.json

"schemes": [
        {
            "name": "SpaceDuck",
            "foreground": "#ecf0c1",
            "background": "#0f111b",
            "black": "#000000",
            "red": "#e33400",
            "green": "#5ccc96",
            "yellow": "#f2ce00",
            "blue": "#00a3cc",
            "purple": "#b3a1e6",
            "cyan": "#7a5ccc",
            "white": "#ecf0c1",
            "brightBlack": "#686f9a",
            "brightRed": "#e33400",
            "brightGreen": "#5ccc96",
            "brightYellow": "#f2ce00",
            "brightBlue": "#00a3cc",
            "brightPurple": "#b3a1e6",
            "brightCyan": "#7a5ccc",
            "brightWhite": "#f0f1ce"
        }

Tmux

You can go ahead and check out readme for tmux here.

But if you're too lazy to click the link you can put this in your tmux.conf for an easy spaceduck themed bottom bar:

  # Basic color support setting
  set-option -g default-terminal "screen-256color"

  # Default bar color
  set-option -g status-style bg='#1b1c36',fg='#ecf0c1'

  # Active Pane
  set -g pane-active-border-style "fg=#5ccc96"

  # Inactive Pane
  set -g pane-border-style "fg=#686f9a"

  # Active window
  set-option -g window-status-current-style bg='#686f9a',fg='#ffffff'

  # Message
  set-option -g message-style bg='#686f9a',fg='#ecf0c1'
  set-option -g message-command-style bg='#686f9a',fg='#ecf0c1'

  # When Commands are run
  set -g message-style "fg=#0f111b,bg=#686f9a"