1
0
mirror of https://github.com/Mayccoll/Gogh.git synced 2023-08-10 21:12:46 +03:00

10 Commits
v221 ... v222

Author SHA1 Message Date
Mayccoll
389f831bf0 add Tender theme to gogh list 2021-11-30 14:39:09 -05:00
Mayccoll
02ab3ff458 Merge pull request #319 from welblaud/tender
Added Tender theme
2021-11-30 14:35:50 -05:00
welblaud
ed3d2e0e9d Added Tender theme 2021-11-25 12:49:59 +01:00
Mayccoll
0be37a3a8e Merge pull request #317 from codeinred/gogh
Tune Gogh theme to give it it's own feel
2021-11-05 09:12:26 -05:00
Mayccoll
1cb477d521 Merge pull request #316 from codeinred/master
Add missing gogh theme
2021-11-05 09:11:48 -05:00
Alecto Irene Perez
6609d329af Tune Gogh theme to give it it's own feel
This tunes Green, Blue, Magenta, and Cyan to give Gogh it's own unique
look and feel, more colorful and vibrant than palenight

Signed-off-by: Alecto Irene Perez <perez.cs@pm.me>
2021-11-04 22:24:24 -06:00
Alecto Irene Perez
3d9ab11f5a Fix name of Sweet Terminal
Sweet Terminal was showing up as Sweet Terminal on the website, but
inside Gogh it was showing up as sweet.

Signed-off-by: Alecto Irene Perez <perez.cs@pm.me>
2021-11-04 21:54:40 -06:00
Alecto Irene Perez
ad92815bd6 Add missing gogh theme
This theme is very pretty, and it shows up on the website, but
it was missing from the list of themes in gogh.sh so it wasn't
installable. I've added it back to the list in gogh.sh (was it's absence
an oversight?)

Signed-off-by: Alecto Irene Perez <perez.cs@pm.me>
2021-11-04 21:42:56 -06:00
github-actions[bot]
3669737386 ------- Generate themes.json ------- 2021-11-04 14:47:12 +00:00
Mayccoll
5d4c58b2c3 Remove README on themes and fix gogh theme name 2021-11-04 09:45:53 -05:00
6 changed files with 64 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@@ -78,6 +78,7 @@ declare -a THEMES=(
'frontend-galaxy.sh'
'geohot.sh'
'github.sh'
'gogh.sh'
'gooey.sh'
'google-dark.sh'
'google-light.sh'
@@ -202,10 +203,11 @@ declare -a THEMES=(
'summer-pop.sh'
'sundried.sh'
'sweet-eliverlara.sh'
'sweet.sh'
'sweet-terminal.sh'
'symphonic.sh'
'synthwave.sh'
'teerb.sh'
'tender.sh'
'terminal-basic.sh'
'terminix-dark.sh'
'thayer-bright.sh'

View File

@@ -1,6 +0,0 @@
![elementary](https://raw.githubusercontent.com/Mayccoll/Gogh/master/images/gogh/Gogh-logo.png)
## Themes:
[Go to theme page :link:](http://mayccoll.github.io/Gogh/)

View File

@@ -3,11 +3,11 @@
# ====================CONFIG THIS =============================== #
export COLOR_01="#292D3E" # Black
export COLOR_02="#F07178" # Red
export COLOR_03="#C3E88D" # Green
export COLOR_03="#62DE84" # Green
export COLOR_04="#FFCB6B" # Yellow
export COLOR_05="#82AAFF" # Blue
export COLOR_06="#C792EA" # Magenta
export COLOR_07="#60ADEC" # Cyan
export COLOR_05="#75A1FF" # Blue
export COLOR_06="#F580FF" # Magenta
export COLOR_07="#60BAEC" # Cyan
export COLOR_08="#ABB2BF" # Light gray
export COLOR_09="#959DCB" # Dark gray
@@ -22,7 +22,7 @@ export COLOR_16="#FFFEFE" # White
export BACKGROUND_COLOR="#292D3E" # Background Color
export FOREGROUND_COLOR="#BFC7D5" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="_bash"
export PROFILE_NAME="Gogh"
# =============================================================== #

55
themes/tender.sh Executable file
View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#1d1d1d" # Black
export COLOR_02="#c5152f" # Red
export COLOR_03="#c9d05c" # Green
export COLOR_04="#ffc24b" # Yellow
export COLOR_05="#b3deef" # Blue
export COLOR_06="#d3b987" # Magenta
export COLOR_07="#73cef4" # Cyan
export COLOR_08="#eeeeee" # Light gray
export COLOR_09="#323232" # Dark gray
export COLOR_10="#f43753" # Light Red
export COLOR_11="#d9e066" # Light Green
export COLOR_12="#facc72" # Light Yellow
export COLOR_13="#c0eafb" # Light Blue
export COLOR_14="#efd093" # Light Magenta
export COLOR_15="#a1d6ec" # Light Cyan
export COLOR_16="#ffffff" # White
export BACKGROUND_COLOR="#282828" # Background Color
export FOREGROUND_COLOR="#EEEEEE" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Tender"
# =============================================================== #
# =============================================================== #
# | 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/Mayccoll/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