Compare commits

...

7 Commits

Author SHA1 Message Date
Mgldvd 78190e48c8
Merge pull request #362 from HendrikPetertje/boyscout-fix-permitions-for-new-themes
Make all new themes introduced recently executable
2022-12-12 09:28:29 -05:00
Peter van der Meulen ca19fbac82
Make all new themes introduced recently executable 2022-12-12 11:23:13 +01:00
github-actions[bot] a011ef81dd ------- Generate themes.json ------- 2022-12-07 15:10:51 +00:00
Mgldvd 46584398e2 Add new themes to gogh file 2022-12-07 10:09:38 -05:00
Mgldvd 6a139694b2
Merge pull request #361 from prateektade/add-more-themes
Add Catppuccin, Everblush and Rosé Pine themes
2022-12-07 10:06:44 -05:00
prateektade 8e14cf9a61 Add Catppuccin, Dracula and Rosé Pine scripts to themes folder 2022-12-07 19:08:00 +05:30
prateektade 76bbec4d25 Add Catppuccin, Dracula and Rosé Pine themes 2022-12-07 19:05:26 +05:30
15 changed files with 451 additions and 0 deletions

View File

@ -117,9 +117,11 @@ If you want to create your own color scheme or contribute to the project, [start
- [4bit](https://ciembor.github.io/4bit/)
- [Bluloco Light Theme](https://github.com/uloco/theme-bluloco-light)
- [Catppuccin](https://github.com/catppuccin)
- [Chalk](https://github.com/chalk/chalk) by [Sindre Sorhus](https://github.com/sindresorhus)
- [Dracula](https://github.com/dracula/dracula-theme) by [Zeno Rocha](https://github.com/zenorocha)
- [Elementary OS](https://elementary.io/)
- [Everblush](https://github.com/Everblush)
- [Fairy Floss](https://github.com/sailorhg/fairyfloss)
- [Flat Remix](https://github.com/daniruiz/flat-remix)
- [Flat UI Terminal Theme](https://dribbble.com/shots/1021755-Flat-UI-Terminal-Theme)
@ -135,6 +137,7 @@ If you want to create your own color scheme or contribute to the project, [start
- [One Dark & Light theme set](https://github.com/nathanbuchar/one-dark-terminal) by [Nathan Buchar](https://github.com/nathanbuchar)
- [Panda](https://github.com/PandaTheme) by [Siamak](https://github.com/siamak)
- [Peppermint](https://noahfrederick.com/log/lion-terminal-theme-peppermint/) by [Noah Frederick](https://github.com/noahfrederick)
- [Rosé Pine](https://github.com/rose-pine)
- [SMYCK](http://color.smyck.org/) by [John-Paul Bader](https://github.com/hukl)
- [Snazzy](https://github.com/sindresorhus/hyper-snazzy) by [Sindre Sorhus](https://github.com/sindresorhus)
- [Solarized](https://ethanschoonover.com/solarized) by [Ethan Schoonover](https://github.com/altercation)

Binary file not shown.

View File

@ -45,6 +45,10 @@ declare -a THEMES=(
'brogrammer.sh'
'c64.sh'
'cai.sh'
'catppuccin-frappe.sh'
'catppuccin-latte.sh'
'catppuccin-macchiato.sh'
'catppuccin-mocha.sh'
'chalk.sh'
'chalkboard.sh'
'chameleon.sh'
@ -69,6 +73,7 @@ declare -a THEMES=(
'elio.sh'
'espresso-libre.sh'
'espresso.sh'
'everblush.sh'
'fairyfloss.sh'
'fairyflossdark.sh'
'fishtank.sh'
@ -185,6 +190,9 @@ declare -a THEMES=(
'red-sands.sh'
'relaxed.sh'
'rippedcasts.sh'
'rose-pine-dawn.sh'
'rose-pine-moon.sh'
'rose-pine.sh'
'royal.sh'
'sat.sh'
'sea-shells.sh'

55
themes/catppuccin-frappe.sh Executable file
View File

@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#51576D" # Black
export COLOR_02="#E78284" # Red
export COLOR_03="#A6D189" # Green
export COLOR_04="#E5C890" # Yellow
export COLOR_05="#8CAAEE" # Blue
export COLOR_06="#F4B8E4" # Magenta
export COLOR_07="#81C8BE" # Cyan
export COLOR_08="#B5BFE2" # Light gray
export COLOR_09="#626880" # Dark gray
export COLOR_10="#E78284" # Light Red
export COLOR_11="#A6D189" # Light Green
export COLOR_12="#E5C890" # Light Yellow
export COLOR_13="#8CAAEE" # Light Blue
export COLOR_14="#F4B8E4" # Light Magenta
export COLOR_15="#81C8BE" # Light Cyan
export COLOR_16="#A5ADCE" # White
export BACKGROUND_COLOR="#303446" # Background Color
export FOREGROUND_COLOR="#C6D0F5" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Catppuccin Frappé"
# =============================================================== #
# =============================================================== #
# | 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

55
themes/catppuccin-latte.sh Executable file
View File

@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#5C5F77" # Black
export COLOR_02="#D20F39" # Red
export COLOR_03="#40A02B" # Green
export COLOR_04="#DF8E1D" # Yellow
export COLOR_05="#1E66F5" # Blue
export COLOR_06="#EA76CB" # Magenta
export COLOR_07="#179299" # Cyan
export COLOR_08="#ACB0BE" # Light gray
export COLOR_09="#6C6F85" # Dark gray
export COLOR_10="#D20F39" # Light Red
export COLOR_11="#40A02B" # Light Green
export COLOR_12="#DF8E1D" # Light Yellow
export COLOR_13="#1E66F5" # Light Blue
export COLOR_14="#EA76CB" # Light Magenta
export COLOR_15="#179299" # Light Cyan
export COLOR_16="#BCC0CC" # White
export BACKGROUND_COLOR="#EFF1F5" # Background Color
export FOREGROUND_COLOR="#4C4F69" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Catppuccin Latte"
# =============================================================== #
# =============================================================== #
# | 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

55
themes/catppuccin-macchiato.sh Executable file
View File

@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#494D64" # Black
export COLOR_02="#ED8796" # Red
export COLOR_03="#A6DA95" # Green
export COLOR_04="#EED49F" # Yellow
export COLOR_05="#8AADF4" # Blue
export COLOR_06="#F5BDE6" # Magenta
export COLOR_07="#8BD5CA" # Cyan
export COLOR_08="#B8C0E0" # Light gray
export COLOR_09="#5B6078" # Dark gray
export COLOR_10="#ED8796" # Light Red
export COLOR_11="#A6DA95" # Light Green
export COLOR_12="#EED49F" # Light Yellow
export COLOR_13="#8AADF4" # Light Blue
export COLOR_14="#F5BDE6" # Light Magenta
export COLOR_15="#8BD5CA" # Light Cyan
export COLOR_16="#A5ADCB" # White
export BACKGROUND_COLOR="#24273A" # Background Color
export FOREGROUND_COLOR="#CAD3F5" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Catppuccin Macchiato"
# =============================================================== #
# =============================================================== #
# | 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

55
themes/catppuccin-mocha.sh Executable file
View File

@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#45475A" # Black
export COLOR_02="#F38BA8" # Red
export COLOR_03="#A6E3A1" # Green
export COLOR_04="#F9E2AF" # Yellow
export COLOR_05="#89B4FA" # Blue
export COLOR_06="#F5C2E7" # Magenta
export COLOR_07="#94E2D5" # Cyan
export COLOR_08="#BAC2DE" # Light gray
export COLOR_09="#585B70" # Dark gray
export COLOR_10="#F38BA8" # Light Red
export COLOR_11="#A6E3A1" # Light Green
export COLOR_12="#F9E2AF" # Light Yellow
export COLOR_13="#89B4FA" # Light Blue
export COLOR_14="#F5C2E7" # Light Magenta
export COLOR_15="#94E2D5" # Light Cyan
export COLOR_16="#A6ADC8" # White
export BACKGROUND_COLOR="#" # Background Color
export FOREGROUND_COLOR="#" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Catppuccin Mocha"
# =============================================================== #
# =============================================================== #
# | 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

0
themes/chameleon.sh Normal file → Executable file
View File

55
themes/everblush.sh Executable file
View File

@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#232A2D" # Black
export COLOR_02="#E57474" # Red
export COLOR_03="#8CCF7E" # Green
export COLOR_04="#E5C76B" # Yellow
export COLOR_05="#67B0E8" # Blue
export COLOR_06="#C47FD5" # Magenta
export COLOR_07="#6CBFBF" # Cyan
export COLOR_08="#B3B9B8" # Light gray
export COLOR_09="#2D3437" # Dark gray
export COLOR_10="#EF7E7E" # Light Red
export COLOR_11="#96D988" # Light Green
export COLOR_12="#F4D67A" # Light Yellow
export COLOR_13="#71BAF2" # Light Blue
export COLOR_14="#CE89DF" # Light Magenta
export COLOR_15="#67CBE7" # Light Cyan
export COLOR_16="#BDC3C2" # White
export BACKGROUND_COLOR="#141B1E" # Background Color
export FOREGROUND_COLOR="#DADADA" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Everblush"
# =============================================================== #
# =============================================================== #
# | 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

0
themes/morada.sh Normal file → Executable file
View File

55
themes/rose-pine-dawn.sh Executable file
View File

@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#F2E9E1" # Black
export COLOR_02="#B4637A" # Red
export COLOR_03="#56949F" # Green
export COLOR_04="#EA9D34" # Yellow
export COLOR_05="#286983" # Blue
export COLOR_06="#907AA9" # Magenta
export COLOR_07="#D7827E" # Cyan
export COLOR_08="#575279" # Light gray
export COLOR_09="#9893A5" # Dark gray
export COLOR_10="#B4637A" # Light Red
export COLOR_11="#56949F" # Light Green
export COLOR_12="#EA9D34" # Light Yellow
export COLOR_13="#286983" # Light Blue
export COLOR_14="#907AA9" # Light Magenta
export COLOR_15="#D7827E" # Light Cyan
export COLOR_16="#575279" # White
export BACKGROUND_COLOR="#FAF4ED" # Background Color
export FOREGROUND_COLOR="#575279" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Rosé Pine Dawn"
# =============================================================== #
# =============================================================== #
# | 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

55
themes/rose-pine-moon.sh Executable file
View File

@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#393552" # Black
export COLOR_02="#EB6F92" # Red
export COLOR_03="#9CCFD8" # Green
export COLOR_04="#F6C177" # Yellow
export COLOR_05="#3E8FB0" # Blue
export COLOR_06="#C4A7E7" # Magenta
export COLOR_07="#EA9A97" # Cyan
export COLOR_08="#E0DEF4" # Light gray
export COLOR_09="#6E6A86" # Dark gray
export COLOR_10="#EB6F92" # Light Red
export COLOR_11="#9CCFD8" # Light Green
export COLOR_12="#F6C177" # Light Yellow
export COLOR_13="#3E8FB0" # Light Blue
export COLOR_14="#C4A7E7" # Light Magenta
export COLOR_15="#EA9A97" # Light Cyan
export COLOR_16="#E0DEF4" # White
export BACKGROUND_COLOR="#232136" # Background Color
export FOREGROUND_COLOR="#E0DEF4" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Rosé Pine Moon"
# =============================================================== #
# =============================================================== #
# | 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

55
themes/rose-pine.sh Executable file
View File

@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#26233A" # Black
export COLOR_02="#EB6F92" # Red
export COLOR_03="#9CCFD8" # Green
export COLOR_04="#F6C177" # Yellow
export COLOR_05="#31748F" # Blue
export COLOR_06="#C4A7E7" # Magenta
export COLOR_07="#EBBCBA" # Cyan
export COLOR_08="#E0DEF4" # Light gray
export COLOR_09="#6E6A86" # Dark gray
export COLOR_10="#EB6F92" # Light Red
export COLOR_11="#9CCFD8" # Light Green
export COLOR_12="#F6C177" # Light Yellow
export COLOR_13="#31748F" # Light Blue
export COLOR_14="#C4A7E7" # Light Magenta
export COLOR_15="#EBBCBA" # Light Cyan
export COLOR_16="#E0DEF4" # White
export BACKGROUND_COLOR="#191724" # Background Color
export FOREGROUND_COLOR="#E0DEF4" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Rosé Pine"
# =============================================================== #
# =============================================================== #
# | 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

0
themes/sonokai.sh Normal file → Executable file
View File

0
themes/synthwave-alpha.sh Normal file → Executable file
View File