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

Merge pull request #202 from ygkn/master

Add kokuban color scheme.
This commit is contained in:
Mayccoll 2019-10-18 21:29:37 -05:00 committed by GitHub
commit af99daac16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 64 additions and 1 deletions

View File

@ -77,6 +77,7 @@ If you want to create your own color scheme or contribute to the project, [start
- [Gooey](http://simey.me/editor-themes/) by [Matt Harris](https://github.com/mdh34)
- [Gruvbox](https://github.com/morhetz/gruvbox) by [Pavel Pertsev](https://github.com/morhetz)
- [Hemisu](https://noahfrederick.com/log/hemisu-for-os-x-terminal/) by [Noah Frederick](https://github.com/noahfrederick)
- [kokuban](https://github.com/ygkn/kokuban) by [ygkn](https://github.com/ygkn)
- Material theme by [Mitchel van Eijgen](https://gist.github.com/mvaneijgen/4c56701215847dd5ddcf) and [Liu Xinan](https://gist.github.com/xinan/ca2b82fef6aaa0d1e099)
- [Monokai](https://web.archive.org/web/20161117102850/https://www.monokai.nl/blog/2006/07/15/textmate-color-theme) by [Wimer Hazenberg](https://github.com/monokai)
- [Ocean](https://github.com/fabianperez/ocean-dark-iterm) by [Fabian Perez](https://github.com/fabianperez)

File diff suppressed because one or more lines are too long

View File

@ -585,6 +585,12 @@
src=https://raw.githubusercontent.com/Mayccoll/Gogh/master/images/themes/kibble.jpg>
</li>
<li class="mix dark bg-black">
<h3> kokuban </h3>
<img alt="Theme kokuban"
src=https://raw.githubusercontent.com/Mayccoll/Gogh/master/images/themes/kokuban.jpg>
</li>
<li class="mix dark bg-grey">
<h3> Later This Evening </h3>
<img alt="Theme Later This Evening"

View File

@ -92,6 +92,7 @@ declare -a THEMES=(
'jellybeans.sh'
'jup.sh'
'kibble.sh'
'kokuban.sh'
'later-this-evening.sh'
'lavandula.sh'
'liquid-carbon-transparent.sh'

BIN
images/themes/kokuban.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

55
themes/kokuban.sh Executable file
View File

@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#2E8744" # Black
export COLOR_02="#D84E4C" # Red
export COLOR_03="#95DA5A" # Green
export COLOR_04="#D6E264" # Yellow
export COLOR_05="#4B9ED7" # Blue
export COLOR_06="#945FC5" # Magenta
export COLOR_07="#D89B25" # Cyan
export COLOR_08="#D8E2D7" # Light gray
export COLOR_09="#34934F" # Dark gray
export COLOR_10="#FF4F59" # Light Red
export COLOR_11="#AFF56A" # Light Green
export COLOR_12="#FCFF75" # Light Yellow
export COLOR_13="#57AEFF" # Light Blue
export COLOR_14="#AE63E9" # Light Magenta
export COLOR_15="#FFAA2B" # Light Cyan
export COLOR_16="#FFFEFE" # White
export BACKGROUND_COLOR="#0D4A08" # Background Color
export FOREGROUND_COLOR="#D8E2D7" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="kokuban"
# =============================================================== #
# =============================================================== #
# | 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