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

Fixed one-half-dark to avoid color 0 & bg be the same colour

This commit is contained in:
Dimitri Bohlender 2017-10-19 11:34:24 +02:00
parent bf24d5d6c1
commit edc517d1b5

View File

@ -1,4 +1,6 @@
#!/usr/bin/env bash
# This is an adaptation of the "One Half Dark" color scheme published by
# Son A. Pham under the MIT license: https://github.com/sonph/onehalf
# ====================CONFIG THIS =============================== #
COLOR_01="#282c34" # HOST
@ -19,10 +21,10 @@ COLOR_14="#c678dd" #
COLOR_15="#56b6c2" #
COLOR_16="#dcdfe4" #
BACKGROUND_COLOR="#282c34" # Background Color
BACKGROUND_COLOR="#000000" # Background Color
FOREGROUND_COLOR="#dcdfe4" # Text
CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
PROFILE_NAME="One Half Dark"
PROFILE_NAME="One Half Black"
# =============================================