mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
------- Generate Themes -------
This commit is contained in:
parent
71da3ae146
commit
68d3d0f0c5
File diff suppressed because one or more lines are too long
1
gogh.sh
1
gogh.sh
@ -175,6 +175,7 @@ declare -a THEMES=(
|
||||
'one-dark.sh'
|
||||
'one-half-black.sh'
|
||||
'one-light.sh'
|
||||
'oxocarbon-dark.sh'
|
||||
'palenight.sh'
|
||||
'pali.sh'
|
||||
'panda.sh'
|
||||
|
49
installs/oxocarbon-dark.sh
Executable file
49
installs/oxocarbon-dark.sh
Executable file
@ -0,0 +1,49 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
export PROFILE_NAME="Oxocarbon Dark"
|
||||
|
||||
export COLOR_01="#262626" # Black (Host)
|
||||
export COLOR_02="#EE5396" # Red (Syntax string)
|
||||
export COLOR_03="#42BE65" # Green (Command)
|
||||
export COLOR_04="#FFE97B" # Yellow (Command second)
|
||||
export COLOR_05="#33B1FF" # Blue (Path)
|
||||
export COLOR_06="#FF7EB6" # Magenta (Syntax var)
|
||||
export COLOR_07="#3DDBD9" # Cyan (Prompt)
|
||||
export COLOR_08="#DDE1E6" # White
|
||||
|
||||
export COLOR_09="#393939" # Bright Black
|
||||
export COLOR_10="#EE5396" # Bright Red (Command error)
|
||||
export COLOR_11="#42BE65" # Bright Green (Exec)
|
||||
export COLOR_12="#FFE97B" # Bright Yellow
|
||||
export COLOR_13="#33B1FF" # Bright Blue (Folder)
|
||||
export COLOR_14="#FF7EB6" # Bright Magenta
|
||||
export COLOR_15="#3DDBD9" # Bright Cyan
|
||||
export COLOR_16="#FFFFFF" # Bright White
|
||||
|
||||
export BACKGROUND_COLOR="#161616" # Background
|
||||
export FOREGROUND_COLOR="#FFFFFF" # Foreground (Text)
|
||||
|
||||
export CURSOR_COLOR="#6F6F6F" # Cursor
|
||||
|
||||
# | ===========================================================================
|
||||
# | 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
|
1
json/oxocarbon-dark.json
Normal file
1
json/oxocarbon-dark.json
Normal file
@ -0,0 +1 @@
|
||||
{"color_01": "#262626", "color_02": "#EE5396", "color_03": "#42BE65", "color_04": "#FFE97B", "color_05": "#33B1FF", "color_06": "#FF7EB6", "color_07": "#3DDBD9", "color_08": "#DDE1E6", "color_09": "#393939", "color_10": "#EE5396", "color_11": "#42BE65", "color_12": "#FFE97B", "color_13": "#33B1FF", "color_14": "#FF7EB6", "color_15": "#3DDBD9", "color_16": "#FFFFFF", "name": "Oxocarbon Dark", "foreground": "#FFFFFF", "background": "#161616", "cursor": "#6F6F6F", "hash": "f6ad57d5c6d4de5a3f4b8ccf890a97a893ea4713ecf1a71460a76da66f140bb2"}
|
Loading…
Reference in New Issue
Block a user