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

6 Commits
v222 ... v223

Author SHA1 Message Date
Mayccoll
eeba3896dc add monokai-pro-ristretto.sh 2021-12-17 12:34:21 -05:00
Mayccoll
969bd3188b Merge pull request #322 from SebastianGrans/master
Add Monokai Pro Ristretto
2021-12-17 12:33:11 -05:00
Sebastian Grans
38f73d92ac Monokai Pro Ristretto 2021-12-17 16:26:57 +01:00
Mayccoll
dc1f778c0a VSCode Theme 2021-12-13 12:20:23 -05:00
Mayccoll
97427f16ea Add gogh yml 2021-12-13 12:19:01 -05:00
github-actions[bot]
2c6e5898db ------- Generate themes.json ------- 2021-11-30 19:40:24 +00:00
5 changed files with 83 additions and 1 deletions

View File

@@ -171,6 +171,7 @@ There is no blue without yellow and without orange.
## Mentions
- [VSCode Theme](https://marketplace.visualstudio.com/items?itemName=Avetis.gogh-theme)
- [Awesome-Shell](https://github.com/alebcay/awesome-shell)
- [Hipertextual](https://hipertextual.com/archivo/2014/11/4bit/)
- [MuyLinux](https://www.muylinux.com/2015/06/06/ping-91)

File diff suppressed because one or more lines are too long

View File

@@ -136,6 +136,7 @@ declare -a THEMES=(
'mono-yellow.sh'
'monokai-dark.sh'
'monokai-pro.sh'
'monokai-pro-ristretto.sh'
'monokai-soda.sh'
'morada.sh'
'n0tch2k.sh'

25
gogh.yml Normal file
View File

@@ -0,0 +1,25 @@
---
name: Gogh
color-01: "#243342" # Black (Host)
color-02: "#c54133" # Red (Syntax string)
color-03: "#27ae60" # Green (Command)
color-04: "#edb20a" # Yellow (Command second)
color-05: "#2479d0" # Blue (Path)
color-06: "#7d3ea0" # Magenta (Syntax var)
color-07: "#1d8579" # Cyan (Promp)
color-08: "#c9cccd" # Light Gray
color-09: "#34495E" # Dark Gray
color-10: "#E74C3C" # Light Red (Command error)
color-11: "#2ECC71" # Light Green (Exec)
color-12: "#F1C40F" # Light Yellow
color-13: "#3498DB" # Light Blue (Folder)
color-14: "#9B59B6" # Light Magenta
color-15: "#2AA198" # Light Cyan
color-16: "#ECF0F1" # White
background: "#0D1926" # Background Color
foreground: "#ECF0F1" # Foreground Color (Text)
cursor: "#edb20a" # Cursor

55
themes/monokai-pro-ristretto.sh Executable file
View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#3E3838" # HOST, Black
export COLOR_02="#DF7484" # SYNTAX_STRING, Red
export COLOR_03="#BBD87E" # COMMAND, Green
export COLOR_04="#EDCE73" # COMMAND_COLOR2, Yellow
export COLOR_05="#DC9373" # PATH, Magenta
export COLOR_06="#A9AAE9" # SYNTAX_VAR, Blue
export COLOR_07="#A4D7CC" # PROMP, Cyan
export COLOR_08="#FBF2F3" # White
export COLOR_09="#70696A" # Bright Black
export COLOR_10="#DF7484" # COMMAND_ERROR, Bright Red
export COLOR_11="#BBD87E" # EXEC, Bright Green
export COLOR_12="#EDCE73" # Bright Yellow
export COLOR_13="#DC9373" # FOLDER, Magenta
export COLOR_14="#A9AAE9" # Bright Bright Blue
export COLOR_15="#A4D7CC" # Bright Cyan
export COLOR_16="#FBF2F3" # Bright White
export BACKGROUND_COLOR="#3E3838" # Background Color
export FOREGROUND_COLOR="#FBF2F3" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Monokai Pro Ristretto"
# =============================================================== #
# =============================================================== #
# | 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