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 Aug 16, 2024
1 parent 1538ee8 commit b943766
Show file tree
Hide file tree
Showing 22 changed files with 531 additions and 1 deletion.
2 changes: 1 addition & 1 deletion data/themes.json

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions gogh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ declare -a THEMES=(
'argonaut.sh'
'arthur.sh'
'astrodark.sh'
'atelier-cave.sh'
'atelier-dune.sh'
'atelier-estuary.sh'
'atelier-forest.sh'
'atelier-heath.sh'
'atelier-lakeside.sh'
'atelier-plateau.sh'
'atelier-savanna.sh'
'atelier-seaside.sh'
'atelier-sulphurpool.sh'
'atom.sh'
'aura.sh'
'ayu-dark.sh'
Expand Down
51 changes: 51 additions & 0 deletions installs/atelier-cave.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#!/usr/bin/env bash

export PROFILE_NAME="Atelier Cave"

export COLOR_01="#BE4678" # Black (Host)
export COLOR_02="#BE4678" # Red (Syntax string)
export COLOR_03="#2A9292" # Green (Command)
export COLOR_04="#A06E3B" # Yellow (Command second)
export COLOR_05="#576DDB" # Blue (Path)
export COLOR_06="#BF40BF" # Magenta (Syntax var)
export COLOR_07="#398BC6" # Cyan (Prompt)
export COLOR_08="#E2DFE7" # White

export COLOR_09="#655F6D" # Bright Black
export COLOR_10="#AA573C" # Bright Red (Command error)
export COLOR_11="#2A9292" # Bright Green (Exec)
export COLOR_12="#A06E3B" # Bright Yellow
export COLOR_13="#955AE7" # Bright Blue (Folder)
export COLOR_14="#BF40BF" # Bright Magenta
export COLOR_15="#398BC6" # Bright Cyan
export COLOR_16="#EFECF4" # Bright White

export BACKGROUND_COLOR="#19171C" # Background
export FOREGROUND_COLOR="#7E7887" # Foreground (Text)

export CURSOR_COLOR="#7E7887" # Cursor

apply_theme() {
if [[ -e "${GOGH_APPLY_SCRIPT}" ]]; then
bash "${GOGH_APPLY_SCRIPT}"
elif [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
elif [[ -e "${SCRIPT_PATH}/apply-colors.sh" ]]; then
bash "${SCRIPT_PATH}/apply-colors.sh"
else
printf '\n%s\n' "Error: Couldn't find apply-colors.sh" 1>&2
exit 1
fi
}

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

if [ -z "${GOGH_NONINTERACTIVE+no}" ]; then
apply_theme
else
apply_theme 1>/dev/null
fi
51 changes: 51 additions & 0 deletions installs/atelier-dune.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#!/usr/bin/env bash

export PROFILE_NAME="Atelier Dune"

export COLOR_01="#D73737" # Black (Host)
export COLOR_02="#D73737" # Red (Syntax string)
export COLOR_03="#60AC39" # Green (Command)
export COLOR_04="#AE9513" # Yellow (Command second)
export COLOR_05="#6684E1" # Blue (Path)
export COLOR_06="#D43552" # Magenta (Syntax var)
export COLOR_07="#1FAD83" # Cyan (Prompt)
export COLOR_08="#E8E4CF" # White

export COLOR_09="#7D7A68" # Bright Black
export COLOR_10="#B65611" # Bright Red (Command error)
export COLOR_11="#60AC39" # Bright Green (Exec)
export COLOR_12="#AE9513" # Bright Yellow
export COLOR_13="#B854D4" # Bright Blue (Folder)
export COLOR_14="#D43552" # Bright Magenta
export COLOR_15="#1FAD83" # Bright Cyan
export COLOR_16="#FEFBEC" # Bright White

export BACKGROUND_COLOR="#20201D" # Background
export FOREGROUND_COLOR="#999580" # Foreground (Text)

export CURSOR_COLOR="#999580" # Cursor

apply_theme() {
if [[ -e "${GOGH_APPLY_SCRIPT}" ]]; then
bash "${GOGH_APPLY_SCRIPT}"
elif [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
elif [[ -e "${SCRIPT_PATH}/apply-colors.sh" ]]; then
bash "${SCRIPT_PATH}/apply-colors.sh"
else
printf '\n%s\n' "Error: Couldn't find apply-colors.sh" 1>&2
exit 1
fi
}

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

if [ -z "${GOGH_NONINTERACTIVE+no}" ]; then
apply_theme
else
apply_theme 1>/dev/null
fi
51 changes: 51 additions & 0 deletions installs/atelier-estuary.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#!/usr/bin/env bash

export PROFILE_NAME="Atelier Estuary"

export COLOR_01="#BA6236" # Black (Host)
export COLOR_02="#BA6236" # Red (Syntax string)
export COLOR_03="#7D9726" # Green (Command)
export COLOR_04="#A5980D" # Yellow (Command second)
export COLOR_05="#36A166" # Blue (Path)
export COLOR_06="#9D6C7C" # Magenta (Syntax var)
export COLOR_07="#5B9D48" # Cyan (Prompt)
export COLOR_08="#E7E6DF" # White

export COLOR_09="#6C6B5A" # Bright Black
export COLOR_10="#AE7313" # Bright Red (Command error)
export COLOR_11="#7D9726" # Bright Green (Exec)
export COLOR_12="#A5980D" # Bright Yellow
export COLOR_13="#5F9182" # Bright Blue (Folder)
export COLOR_14="#9D6C7C" # Bright Magenta
export COLOR_15="#5B9D48" # Bright Cyan
export COLOR_16="#F4F3EC" # Bright White

export BACKGROUND_COLOR="#22221B" # Background
export FOREGROUND_COLOR="#878573" # Foreground (Text)

export CURSOR_COLOR="#878573" # Cursor

apply_theme() {
if [[ -e "${GOGH_APPLY_SCRIPT}" ]]; then
bash "${GOGH_APPLY_SCRIPT}"
elif [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
elif [[ -e "${SCRIPT_PATH}/apply-colors.sh" ]]; then
bash "${SCRIPT_PATH}/apply-colors.sh"
else
printf '\n%s\n' "Error: Couldn't find apply-colors.sh" 1>&2
exit 1
fi
}

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

if [ -z "${GOGH_NONINTERACTIVE+no}" ]; then
apply_theme
else
apply_theme 1>/dev/null
fi
51 changes: 51 additions & 0 deletions installs/atelier-forest.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#!/usr/bin/env bash

export PROFILE_NAME="Atelier Forest"

export COLOR_01="#F22C40" # Black (Host)
export COLOR_02="#F22C40" # Red (Syntax string)
export COLOR_03="#7B9726" # Green (Command)
export COLOR_04="#C38418" # Yellow (Command second)
export COLOR_05="#407EE7" # Blue (Path)
export COLOR_06="#C33FF3" # Magenta (Syntax var)
export COLOR_07="#3D97B8" # Cyan (Prompt)
export COLOR_08="#E6E2E0" # White

export COLOR_09="#766E6B" # Bright Black
export COLOR_10="#DF5320" # Bright Red (Command error)
export COLOR_11="#7B9726" # Bright Green (Exec)
export COLOR_12="#C38418" # Bright Yellow
export COLOR_13="#6666EA" # Bright Blue (Folder)
export COLOR_14="#C33FF3" # Bright Magenta
export COLOR_15="#3D97B8" # Bright Cyan
export COLOR_16="#F1EFEE" # Bright White

export BACKGROUND_COLOR="#1B1918" # Background
export FOREGROUND_COLOR="#9C9491" # Foreground (Text)

export CURSOR_COLOR="#9C9491" # Cursor

apply_theme() {
if [[ -e "${GOGH_APPLY_SCRIPT}" ]]; then
bash "${GOGH_APPLY_SCRIPT}"
elif [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
elif [[ -e "${SCRIPT_PATH}/apply-colors.sh" ]]; then
bash "${SCRIPT_PATH}/apply-colors.sh"
else
printf '\n%s\n' "Error: Couldn't find apply-colors.sh" 1>&2
exit 1
fi
}

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

if [ -z "${GOGH_NONINTERACTIVE+no}" ]; then
apply_theme
else
apply_theme 1>/dev/null
fi
51 changes: 51 additions & 0 deletions installs/atelier-heath.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#!/usr/bin/env bash

export PROFILE_NAME="Atelier Heath"

export COLOR_01="#CA402B" # Black (Host)
export COLOR_02="#CA402B" # Red (Syntax string)
export COLOR_03="#918B3B" # Green (Command)
export COLOR_04="#BB8A35" # Yellow (Command second)
export COLOR_05="#516AEC" # Blue (Path)
export COLOR_06="#CC33CC" # Magenta (Syntax var)
export COLOR_07="#159393" # Cyan (Prompt)
export COLOR_08="#D8CAD8" # White

export COLOR_09="#776977" # Bright Black
export COLOR_10="#A65926" # Bright Red (Command error)
export COLOR_11="#918B3B" # Bright Green (Exec)
export COLOR_12="#BB8A35" # Bright Yellow
export COLOR_13="#7B59C0" # Bright Blue (Folder)
export COLOR_14="#CC33CC" # Bright Magenta
export COLOR_15="#159393" # Bright Cyan
export COLOR_16="#F7F3F7" # Bright White

export BACKGROUND_COLOR="#1B181B" # Background
export FOREGROUND_COLOR="#9E8F9E" # Foreground (Text)

export CURSOR_COLOR="#9E8F9E" # Cursor

apply_theme() {
if [[ -e "${GOGH_APPLY_SCRIPT}" ]]; then
bash "${GOGH_APPLY_SCRIPT}"
elif [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
elif [[ -e "${SCRIPT_PATH}/apply-colors.sh" ]]; then
bash "${SCRIPT_PATH}/apply-colors.sh"
else
printf '\n%s\n' "Error: Couldn't find apply-colors.sh" 1>&2
exit 1
fi
}

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

if [ -z "${GOGH_NONINTERACTIVE+no}" ]; then
apply_theme
else
apply_theme 1>/dev/null
fi
51 changes: 51 additions & 0 deletions installs/atelier-lakeside.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#!/usr/bin/env bash

export PROFILE_NAME="Atelier Lakeside"

export COLOR_01="#D22D72" # Black (Host)
export COLOR_02="#D22D72" # Red (Syntax string)
export COLOR_03="#568C3B" # Green (Command)
export COLOR_04="#8A8A0F" # Yellow (Command second)
export COLOR_05="#257FAD" # Blue (Path)
export COLOR_06="#B72DD2" # Magenta (Syntax var)
export COLOR_07="#2D8F6F" # Cyan (Prompt)
export COLOR_08="#C1E4F6" # White

export COLOR_09="#5A7B8C" # Bright Black
export COLOR_10="#935C25" # Bright Red (Command error)
export COLOR_11="#568C3B" # Bright Green (Exec)
export COLOR_12="#8A8A0F" # Bright Yellow
export COLOR_13="#6B6BB8" # Bright Blue (Folder)
export COLOR_14="#B72DD2" # Bright Magenta
export COLOR_15="#2D8F6F" # Bright Cyan
export COLOR_16="#EBF8FF" # Bright White

export BACKGROUND_COLOR="#161B1D" # Background
export FOREGROUND_COLOR="#7195A8" # Foreground (Text)

export CURSOR_COLOR="#7195A8" # Cursor

apply_theme() {
if [[ -e "${GOGH_APPLY_SCRIPT}" ]]; then
bash "${GOGH_APPLY_SCRIPT}"
elif [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
elif [[ -e "${SCRIPT_PATH}/apply-colors.sh" ]]; then
bash "${SCRIPT_PATH}/apply-colors.sh"
else
printf '\n%s\n' "Error: Couldn't find apply-colors.sh" 1>&2
exit 1
fi
}

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

if [ -z "${GOGH_NONINTERACTIVE+no}" ]; then
apply_theme
else
apply_theme 1>/dev/null
fi
51 changes: 51 additions & 0 deletions installs/atelier-plateau.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#!/usr/bin/env bash

export PROFILE_NAME="Atelier Plateau"

export COLOR_01="#CA4949" # Black (Host)
export COLOR_02="#CA4949" # Red (Syntax string)
export COLOR_03="#4B8B8B" # Green (Command)
export COLOR_04="#A06E3B" # Yellow (Command second)
export COLOR_05="#7272CA" # Blue (Path)
export COLOR_06="#BD5187" # Magenta (Syntax var)
export COLOR_07="#5485B6" # Cyan (Prompt)
export COLOR_08="#E7DFDF" # White

export COLOR_09="#655D5D" # Bright Black
export COLOR_10="#B45A3C" # Bright Red (Command error)
export COLOR_11="#4B8B8B" # Bright Green (Exec)
export COLOR_12="#A06E3B" # Bright Yellow
export COLOR_13="#8464C4" # Bright Blue (Folder)
export COLOR_14="#BD5187" # Bright Magenta
export COLOR_15="#5485B6" # Bright Cyan
export COLOR_16="#F4ECEC" # Bright White

export BACKGROUND_COLOR="#1B1818" # Background
export FOREGROUND_COLOR="#7E7777" # Foreground (Text)

export CURSOR_COLOR="#7E7777" # Cursor

apply_theme() {
if [[ -e "${GOGH_APPLY_SCRIPT}" ]]; then
bash "${GOGH_APPLY_SCRIPT}"
elif [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
elif [[ -e "${SCRIPT_PATH}/apply-colors.sh" ]]; then
bash "${SCRIPT_PATH}/apply-colors.sh"
else
printf '\n%s\n' "Error: Couldn't find apply-colors.sh" 1>&2
exit 1
fi
}

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

if [ -z "${GOGH_NONINTERACTIVE+no}" ]; then
apply_theme
else
apply_theme 1>/dev/null
fi
Loading

0 comments on commit b943766

Please sign in to comment.