Gogh/themes/foxnightly.sh

56 lines
2.5 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#2A2A2E" # HOST | Black russian | list-text-color | maybe
COLOR_02="#B98EFF" # SYNTAX_STRING | Medium purple | html-attribute-value
COLOR_03="#FF7DE9" # COMMAND | Orchid | html-attribute-name
COLOR_04="#729FCF" # COMMAND_COLOR2 | Jordy blue | html-tag
COLOR_05="#66A05B" # PATH | De york | html-comment and doctype
COLOR_06="#75507B" # SYNTAX_VAR | Hot purple (import) list-bg-color | maybe
COLOR_07="#ACACAE" # PROMP | Dark grey | html-tag-angle-brackets
COLOR_08="#FFFFFF" # White | active list-bg (probably)
2017-12-27 20:10:17 +03:00
COLOR_09="#A40000" # UNKNOWN | Tomato
COLOR_10="#BF4040" # COMMAND_ERROR | Valencia (grep highlight)
COLOR_11="#66A05B" # EXEC | same as PATH (De york) (maybe)
COLOR_12="#FFB86C" # UNKNOWN | Rajah
COLOR_13="#729FCF" # FOLDER | Jordy blue | active:html-brackets/parenthesis
COLOR_14="#8F5902" # Mandalay | special sort of-files (probably)
COLOR_15="#C4A000" # (maybe) | Lemon
COLOR_16="#5C3566" # UNKNOWN | Honey flower
BACKGROUND_COLOR="#2A2A2E" # Background Color | Black russian | true
FOREGROUND_COLOR="#D7D7DB" # Text | Fuscous grey | html-tag-content
CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
PROFILE_NAME="Foxnightly"
# =============================================
2017-12-27 20:10:17 +03:00
# Mainly inspired by firefox developer/nightly (58) inspector theme
# Font: Hack or Liberation Mono Regular | 9 (font-size)
# Allow bold text
# Cursor shape: Block or Underline (if Hack — Block else Underline)
# Show menubar by default in new terminals — turn off (unchecked)
# Bold color: Same as text color (as you wish — checked/unchecked)
# =============================================================== #
# | Apply Colors
# ===============================================================|#
2018-11-13 20:51:25 +03:00
SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PARENT_PATH="$(dirname "$SCRIPT_PATH")"
2018-11-13 20:51:25 +03:00
# Allow developer to change url to forked url for easier testing
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
2018-11-13 20:51:25 +03:00
if [ -e "${PARENT_PATH}/apply-colors.sh" ]
then
2018-11-13 20:51:25 +03:00
source "${PARENT_PATH}/apply-colors.sh"
else
2018-11-13 20:51:25 +03:00
if [ "$(uname)" = "Darwin" ]; then
# OSX ships with curl and ancient bash
2018-11-22 02:16:21 +03:00
(eval "$(curl -so- "${BASE_URL}/apply-colors.sh")")
else
# Linux ships with wget
2018-11-22 02:16:21 +03:00
(eval "$(wget -qO- "${BASE_URL}/apply-colors.sh")")
fi
2018-11-13 20:51:25 +03:00
fi