diff --git a/images/themes/foxnightly.png b/images/themes/foxnightly.png new file mode 100644 index 0000000..9724b76 Binary files /dev/null and b/images/themes/foxnightly.png differ diff --git a/themes/foxnightly.sh b/themes/foxnightly.sh new file mode 100755 index 0000000..f5ff89c --- /dev/null +++ b/themes/foxnightly.sh @@ -0,0 +1,57 @@ +#!/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) + +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" +# ============================================= + +# 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 +# ===============================================================|# +function gogh_colors () { + echo "" + echo -e "\e[0;30m█████\\e[0m\e[0;31m█████\\e[0m\e[0;32m█████\\e[0m\e[0;33m█████\\e[0m\e[0;34m█████\\e[0m\e[0;35m█████\\e[0m\e[0;36m█████\\e[0m\e[0;37m█████\\e[0m" + echo -e "\e[0m\e[1;30m█████\\e[0m\e[1;31m█████\\e[0m\e[1;32m█████\\e[0m\e[1;33m█████\\e[0m\e[1;34m█████\\e[0m\e[1;35m█████\\e[0m\e[1;36m█████\\e[0m\e[1;37m█████\\e[0m" + echo "" +} + +SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +PARENT_PATH="$(dirname "$SCRIPT_PATH")" + +if [ -e $PARENT_PATH"/apply-colors.sh" ] +then +gogh_colors +source $PARENT_PATH"/apply-colors.sh" + +else +gogh_colors +source <(wget -O - https://raw.githubusercontent.com/Mayccoll/Gogh/master/apply-colors.sh) +fi +