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

Add tokyo-night themes

Based on https://github.com/enkia/tokyo-night-vscode-theme
This commit is contained in:
Georgi Dimitrov 2021-07-13 23:16:02 +01:00
parent f6804f5c4e
commit b1860e096e
4 changed files with 165 additions and 0 deletions

Binary file not shown.

55
themes/tokyo-night-light.sh Executable file
View File

@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#0f0f14" # Black
export COLOR_02="#8c4351" # Red
export COLOR_03="#485e30" # Green
export COLOR_04="#8f5e15" # Yellow
export COLOR_05="#34548a" # Blue
export COLOR_06="#5a4a78" # Magenta
export COLOR_07="#0f4b6e" # Cyan
export COLOR_08="#343b58" # Light gray
export COLOR_09="#9699a3" # Dark gray
export COLOR_10="#8c4351" # Light Red
export COLOR_11="#485e30" # Light Green
export COLOR_12="#8f5e15" # Light Yellow
export COLOR_13="#34548a" # Light Blue
export COLOR_14="#5a4a78" # Light Magenta
export COLOR_15="#0f4b6e" # Light Cyan
export COLOR_16="#343b58" # White
export BACKGROUND_COLOR="#d5d6db" # Background Color
export FOREGROUND_COLOR="#565a6e" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Tokyo Night Light"
# =============================================================== #
# =============================================================== #
# | 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

55
themes/tokyo-night-storm.sh Executable file
View File

@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#414868" # Black
export COLOR_02="#f7768e" # Red
export COLOR_03="#9ece6a" # Green
export COLOR_04="#e0af68" # Yellow
export COLOR_05="#7aa2f7" # Blue
export COLOR_06="#bb9af7" # Magenta
export COLOR_07="#7dcfff" # Cyan
export COLOR_08="#c0caf5" # Light gray
export COLOR_09="#414868" # Dark gray
export COLOR_10="#f7768e" # Light Red
export COLOR_11="#9ece6a" # Light Green
export COLOR_12="#e0af68" # Light Yellow
export COLOR_13="#7aa2f7" # Light Blue
export COLOR_14="#bb9af7" # Light Magenta
export COLOR_15="#7dcfff" # Light Cyan
export COLOR_16="#c0caf5" # White
export BACKGROUND_COLOR="#24283b" # Background Color
export FOREGROUND_COLOR="#c0caf5" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Tokyo Night Storm"
# =============================================================== #
# =============================================================== #
# | 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

55
themes/tokyo-night.sh Executable file
View File

@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#414868" # Black
export COLOR_02="#f7768e" # Red
export COLOR_03="#9ece6a" # Green
export COLOR_04="#e0af68" # Yellow
export COLOR_05="#7aa2f7" # Blue
export COLOR_06="#bb9af7" # Magenta
export COLOR_07="#7dcfff" # Cyan
export COLOR_08="#a9b1d6" # Light gray
export COLOR_09="#414868" # Dark gray
export COLOR_10="#f7768e" # Light Red
export COLOR_11="#9ece6a" # Light Green
export COLOR_12="#e0af68" # Light Yellow
export COLOR_13="#7aa2f7" # Light Blue
export COLOR_14="#bb9af7" # Light Magenta
export COLOR_15="#7dcfff" # Light Cyan
export COLOR_16="#c0caf5" # White
export BACKGROUND_COLOR="#1a1b26" # Background Color
export FOREGROUND_COLOR="#c0caf5" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Tokyo Night"
# =============================================================== #
# =============================================================== #
# | 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