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

4 Commits
v229 ... v232

Author SHA1 Message Date
github-actions[bot]
f8b6173d18 ------- Generate themes.json ------- 2022-10-17 16:35:30 +00:00
Mgldvd
c79eefb259 KANAGAWA 2022-10-17 11:34:07 -05:00
Mgldvd
cabd70c35e Merge pull request #355 from jeffwindsor/master
ported from rebelot/kanagawa.nvim
2022-10-17 10:52:34 -05:00
Jeff Windsor
7953b6a65b ported from rebelot/kanagawa.nvim 2022-10-10 21:47:31 -07:00
4 changed files with 58 additions and 1 deletions

View File

@@ -140,6 +140,7 @@ If you want to create your own color scheme or contribute to the project, [start
- [Tokyo Night](https://github.com/enkia/tokyo-night-vscode-theme) - [Tokyo Night](https://github.com/enkia/tokyo-night-vscode-theme)
- [Tomorrow color theme set](https://github.com/chriskempson/tomorrow-theme) by [Chris Kempson](https://github.com/chriskempson) - [Tomorrow color theme set](https://github.com/chriskempson/tomorrow-theme) by [Chris Kempson](https://github.com/chriskempson)
- Material theme by [Mitchel van Eijgen](https://gist.github.com/mvaneijgen/4c56701215847dd5ddcf) and [Liu Xinan](https://gist.github.com/xinan/ca2b82fef6aaa0d1e099) - Material theme by [Mitchel van Eijgen](https://gist.github.com/mvaneijgen/4c56701215847dd5ddcf) and [Liu Xinan](https://gist.github.com/xinan/ca2b82fef6aaa0d1e099)
- [KANAGAWA.nvim](https://github.com/rebelot/kanagawa.nvim)
<br/> <br/>
<br/> <br/>

File diff suppressed because one or more lines are too long

View File

@@ -112,6 +112,7 @@ declare -a THEMES=(
'japanesque.sh' 'japanesque.sh'
'jellybeans.sh' 'jellybeans.sh'
'jup.sh' 'jup.sh'
'kanagawa.sh'
'kibble.sh' 'kibble.sh'
'kokuban.sh' 'kokuban.sh'
'laserwave.sh' 'laserwave.sh'

55
themes/kanagawa.sh Executable file
View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#090618" # Black
export COLOR_02="#C34043" # Red
export COLOR_03="#76946A" # Green
export COLOR_04="#C0A36E" # Yellow
export COLOR_05="#7E9CD8" # Blue
export COLOR_06="#957FB8" # Magenta
export COLOR_07="#6A9589" # Cyan
export COLOR_08="#DCD7BA" # Light gray
export COLOR_09="#727169" # Dark gray
export COLOR_10="#E82424" # Light Red
export COLOR_11="#98BB6C" # Light Green
export COLOR_12="#E6C384" # Light Yellow
export COLOR_13="#7FB4CA" # Light Blue
export COLOR_14="#938AA9" # Light Magenta
export COLOR_15="#7AA89F" # Light Cyan
export COLOR_16="#C8C093" # White
export BACKGROUND_COLOR="#1F1F28" # Background Color
export FOREGROUND_COLOR="#DCD7BA" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="kanagawa"
# =============================================================== #
# =============================================================== #
# | 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