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

Merge pull request #209 from guillermoap/master

Add summer pop theme.
This commit is contained in:
Mayccoll 2019-12-29 13:43:41 -05:00 committed by GitHub
commit 4e03075a35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 64 additions and 1 deletions

View File

@ -87,6 +87,7 @@ If you want to create your own color scheme or contribute to the project, [start
- [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)
- [Srcery](https://github.com/roosta/vim-srcery) by [Daniel Berg](https://github.com/roosta)
- [Summer Pop](https://github.com/guillermoap/Gogh) by [Guillermo Aguirre](https://github.com/guillermoap)
- [Terminal Sexy](https://terminal.sexy) by [George Czabania](https://github.com/stayradiated)
- [Tilix](https://github.com/storm119/Tilix-Themes)
- [Tomorrow color theme set](https://github.com/chriskempson/tomorrow-theme) by [Chris Kempson](https://github.com/chriskempson)

File diff suppressed because one or more lines are too long

View File

@ -993,6 +993,12 @@
src=https://raw.githubusercontent.com/Mayccoll/Gogh/master/images/themes/srcery.jpg>
</li>
<li class="mix dark bg-brown">
<h3> Summer Pop </h3>
<img alt="Theme Summer Pop"
src=https://raw.githubusercontent.com/Mayccoll/Gogh/master/images/themes/summer-pop.jpg>
</li>
<li class="mix dark bg-brown">
<h3> Sundried </h3>
<img alt="Theme Sundried"

View File

@ -172,6 +172,7 @@ declare -a THEMES=(
'spring.sh'
'square.sh'
'srcery.sh'
'summer-pop.sh'
'sundried.sh'
'symphonic.sh'
'teerb.sh'

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

55
themes/summer-pop.sh Normal file
View File

@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#666666" # Black
export COLOR_02="#FF1E8E" # Red
export COLOR_03="#8EFF1E" # Green
export COLOR_04="#FFFB00" # Yellow
export COLOR_05="#1E8EFF" # Blue
export COLOR_06="#E500E5" # Magenta
export COLOR_07="#00E5E5" # Cyan
export COLOR_08="#E5E5E5" # Light gray
export COLOR_09="#666666" # Dark gray
export COLOR_10="#FF1E8E" # Light Red
export COLOR_11="#8EFF1E" # Light Green
export COLOR_12="#FFFB00" # Light Yellow
export COLOR_13="#1E8EFF" # Light Blue
export COLOR_14="#E500E5" # Light Magenta
export COLOR_15="#00E5E5" # Light Cyan
export COLOR_16="#E5E5E5" # White
export BACKGROUND_COLOR="#272822" # Background Color
export FOREGROUND_COLOR="#FFFFFF" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="summer-pop"
# =============================================================== #
# =============================================================== #
# | 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/guillermoap/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