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 5, 2024
1 parent e6a8e81 commit fc59ff6
Show file tree
Hide file tree
Showing 8 changed files with 126 additions and 24 deletions.
2 changes: 1 addition & 1 deletion data/themes.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions gogh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ declare -a THEMES=(
'japanesque.sh'
'jellybeans.sh'
'jup.sh'
'kanagawa-dragon.sh'
'kanagawa.sh'
'kibble.sh'
'kokuban.sh'
Expand All @@ -144,6 +145,7 @@ declare -a THEMES=(
'material.sh'
'mathias.sh'
'medallion.sh'
'miramare.sh'
'misterioso.sh'
'molokai.sh'
'mona-lisa.sh'
Expand Down
49 changes: 49 additions & 0 deletions installs/kanagawa-dragon.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
#!/usr/bin/env bash

export PROFILE_NAME="Kanagawa Dragon"

export COLOR_01="#0D0C0C" # Black (Host)
export COLOR_02="#C4746E" # Red (Syntax string)
export COLOR_03="#8A9A7B" # Green (Command)
export COLOR_04="#C4B28A" # Yellow (Command second)
export COLOR_05="#8BA4B0" # Blue (Path)
export COLOR_06="#A292A3" # Magenta (Syntax var)
export COLOR_07="#8EA4A2" # Cyan (Prompt)
export COLOR_08="#C8C093" # White

export COLOR_09="#A6A69C" # Bright Black
export COLOR_10="#E46876" # Bright Red (Command error)
export COLOR_11="#87A987" # Bright Green (Exec)
export COLOR_12="#E6C384" # Bright Yellow
export COLOR_13="#7FB4CA" # Bright Blue (Folder)
export COLOR_14="#938AA9" # Bright Magenta
export COLOR_15="#7AA89F" # Bright Cyan
export COLOR_16="#C5C9C5" # Bright White

export BACKGROUND_COLOR="#181616" # Background
export FOREGROUND_COLOR="#C5C9C5" # Foreground (Text)

export CURSOR_COLOR="#C8C093" # 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
49 changes: 49 additions & 0 deletions installs/miramare.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
#!/usr/bin/env bash

export PROFILE_NAME="Miramare"

export COLOR_01="#242021" # Black (Host)
export COLOR_02="#e68183" # Red (Syntax string)
export COLOR_03="#a7c080" # Green (Command)
export COLOR_04="#d9bb80" # Yellow (Command second)
export COLOR_05="#89beba" # Blue (Path)
export COLOR_06="#d3a0bc" # Magenta (Syntax var)
export COLOR_07="#87c095" # Cyan (Prompt)
export COLOR_08="#d8caac" # White

export COLOR_09="#444444" # Bright Black
export COLOR_10="#e39b7b" # Bright Red (Command error)
export COLOR_11="#a7c080" # Bright Green (Exec)
export COLOR_12="#d9bb80" # Bright Yellow
export COLOR_13="#89beba" # Bright Blue (Folder)
export COLOR_14="#d3a0bc" # Bright Magenta
export COLOR_15="#87c095" # Bright Cyan
export COLOR_16="#e6d6ac" # Bright White

export BACKGROUND_COLOR="#2a2426" # Background
export FOREGROUND_COLOR="#e6d6ac" # Foreground (Text)

export CURSOR_COLOR="#e6d6ac" # 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
44 changes: 22 additions & 22 deletions installs/zenburn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@

export PROFILE_NAME="Zenburn"

export COLOR_01="#4D4D4D" # Black (Host)
export COLOR_02="#705050" # Red (Syntax string)
export COLOR_03="#60B48A" # Green (Command)
export COLOR_04="#F0DFAF" # Yellow (Command second)
export COLOR_05="#506070" # Blue (Path)
export COLOR_06="#DC8CC3" # Magenta (Syntax var)
export COLOR_07="#8CD0D3" # Cyan (Prompt)
export COLOR_08="#DCDCCC" # White

export COLOR_09="#709080" # Bright Black
export COLOR_10="#DCA3A3" # Bright Red (Command error)
export COLOR_11="#C3BF9F" # Bright Green (Exec)
export COLOR_12="#E0CF9F" # Bright Yellow
export COLOR_13="#94BFF3" # Bright Blue (Folder)
export COLOR_14="#EC93D3" # Bright Magenta
export COLOR_15="#93E0E3" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White

export BACKGROUND_COLOR="#3F3F3F" # Background
export FOREGROUND_COLOR="#DCDCCC" # Foreground (Text)

export CURSOR_COLOR="#DCDCCC" # Cursor
export COLOR_01="#333333" # Black (Host)
export COLOR_02="#cc9393" # Red (Syntax string)
export COLOR_03="#efef87" # Green (Command)
export COLOR_04="#ffd7a7" # Yellow (Command second)
export COLOR_05="#c3bf97" # Blue (Path)
export COLOR_06="#bca3a3" # Magenta (Syntax var)
export COLOR_07="#93b3a3" # Cyan (Prompt)
export COLOR_08="#f0efd0" # White

export COLOR_09="#757575" # Bright Black
export COLOR_10="#dfaf87" # Bright Red (Command error)
export COLOR_11="#ffff87" # Bright Green (Exec)
export COLOR_12="#ffcfaf" # Bright Yellow
export COLOR_13="#d7d7af" # Bright Blue (Folder)
export COLOR_14="#d7afaf" # Bright Magenta
export COLOR_15="#93bea3" # Bright Cyan
export COLOR_16="#dcdccc" # Bright White

export BACKGROUND_COLOR="#3a3a3a" # Background
export FOREGROUND_COLOR="#dcdccc" # Foreground (Text)

export CURSOR_COLOR="#dcdccc" # Cursor

# | ===========================================================================
# | Apply Colors
Expand Down
1 change: 1 addition & 0 deletions json/kanagawa-dragon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"color_01": "#0D0C0C", "color_02": "#C4746E", "color_03": "#8A9A7B", "color_04": "#C4B28A", "color_05": "#8BA4B0", "color_06": "#A292A3", "color_07": "#8EA4A2", "color_08": "#C8C093", "color_09": "#A6A69C", "color_10": "#E46876", "color_11": "#87A987", "color_12": "#E6C384", "color_13": "#7FB4CA", "color_14": "#938AA9", "color_15": "#7AA89F", "color_16": "#C5C9C5", "name": "Kanagawa Dragon", "foreground": "#C5C9C5", "background": "#181616", "cursor": "#C8C093", "hash": "32b161849d0d6414de34bf56fef740da9458f3aca128c8bf3a4227c86ce37b25"}
1 change: 1 addition & 0 deletions json/miramare.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"color_01": "#242021", "color_02": "#e68183", "color_03": "#a7c080", "color_04": "#d9bb80", "color_05": "#89beba", "color_06": "#d3a0bc", "color_07": "#87c095", "color_08": "#d8caac", "color_09": "#444444", "color_10": "#e39b7b", "color_11": "#a7c080", "color_12": "#d9bb80", "color_13": "#89beba", "color_14": "#d3a0bc", "color_15": "#87c095", "color_16": "#e6d6ac", "name": "Miramare", "foreground": "#e6d6ac", "background": "#2a2426", "cursor": "#e6d6ac", "hash": "d16846937e101153b67fa89ef204cc25e39f632407ab8aa54b3cb56906ec629d"}
2 changes: 1 addition & 1 deletion json/zenburn.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"color_01": "#4D4D4D", "color_02": "#705050", "color_03": "#60B48A", "color_04": "#F0DFAF", "color_05": "#506070", "color_06": "#DC8CC3", "color_07": "#8CD0D3", "color_08": "#DCDCCC", "color_09": "#709080", "color_10": "#DCA3A3", "color_11": "#C3BF9F", "color_12": "#E0CF9F", "color_13": "#94BFF3", "color_14": "#EC93D3", "color_15": "#93E0E3", "color_16": "#FFFFFF", "name": "Zenburn", "foreground": "#DCDCCC", "background": "#3F3F3F", "cursor": "#DCDCCC", "hash": "f7fcd9bd19ab1bb68da10e3917067d776da39520826940492a0e51f3328ccfc3"}
{"color_01": "#333333", "color_02": "#cc9393", "color_03": "#efef87", "color_04": "#ffd7a7", "color_05": "#c3bf97", "color_06": "#bca3a3", "color_07": "#93b3a3", "color_08": "#f0efd0", "color_09": "#757575", "color_10": "#dfaf87", "color_11": "#ffff87", "color_12": "#ffcfaf", "color_13": "#d7d7af", "color_14": "#d7afaf", "color_15": "#93bea3", "color_16": "#dcdccc", "name": "Zenburn", "foreground": "#dcdccc", "background": "#3a3a3a", "cursor": "#dcdccc", "hash": "3b0e9781baafa8e4e9e171c666f0132e565fac5d0d69440369f7255758f73fe5"}

0 comments on commit fc59ff6

Please sign in to comment.