Skip to content

Commit

Permalink
------- Generate Themes -------
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 16, 2024
1 parent f581b17 commit 801870c
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 1 deletion.
2 changes: 1 addition & 1 deletion data/themes.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions gogh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ declare -a THEMES=(
'bim.sh'
'birds-of-paradise.sh'
'blazer.sh'
'blue-dolphin.sh'
'bluloco-light.sh'
'bluloco-zsh-light.sh'
'borland.sh'
Expand Down
49 changes: 49 additions & 0 deletions installs/blue-dolphin.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
#!/usr/bin/env bash

export PROFILE_NAME="Blue Dolphin"

export COLOR_01="#292D3E" # Black (Host)
export COLOR_02="#FF8288" # Red (Syntax string)
export COLOR_03="#B4E88D" # Green (Command)
export COLOR_04="#F4D69F" # Yellow (Command second)
export COLOR_05="#82AAFF" # Blue (Path)
export COLOR_06="#E9C1FF" # Magenta (Syntax var)
export COLOR_07="#89EBFF" # Cyan (Prompt)
export COLOR_08="#D0D0D0" # White

export COLOR_09="#434758" # Bright Black
export COLOR_10="#FF8B92" # Bright Red (Command error)
export COLOR_11="#DDFFA7" # Bright Green (Exec)
export COLOR_12="#FFE585" # Bright Yellow
export COLOR_13="#9CC4FF" # Bright Blue (Folder)
export COLOR_14="#DDB0F6" # Bright Magenta
export COLOR_15="#A3F7FF" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White

export BACKGROUND_COLOR="#006984" # Background
export FOREGROUND_COLOR="#C5F2FF" # Foreground (Text)

export CURSOR_COLOR="#FFCC00" # Cursor

# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"

# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}


if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi
1 change: 1 addition & 0 deletions json/blue-dolphin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"color_01": "#292D3E", "color_02": "#FF8288", "color_03": "#B4E88D", "color_04": "#F4D69F", "color_05": "#82AAFF", "color_06": "#E9C1FF", "color_07": "#89EBFF", "color_08": "#D0D0D0", "color_09": "#434758", "color_10": "#FF8B92", "color_11": "#DDFFA7", "color_12": "#FFE585", "color_13": "#9CC4FF", "color_14": "#DDB0F6", "color_15": "#A3F7FF", "color_16": "#FFFFFF", "name": "Blue Dolphin", "foreground": "#C5F2FF", "background": "#006984", "cursor": "#FFCC00", "hash": "9e8506e8a748c0fb9621a0906ca3c8c90bbade60e57700f196c2ebcc4da0586f"}

0 comments on commit 801870c

Please sign in to comment.