From 8e57cfe5ac2621974e7534a0fca7dd32c09b563a Mon Sep 17 00:00:00 2001 From: "Daniel R. Neal" Date: Fri, 22 Jan 2021 18:51:44 -0800 Subject: [PATCH] Update Google Light and Dark theme --- themes/google-dark.sh | 36 ++++++++++++++++++------------------ themes/google-light.sh | 36 ++++++++++++++++++------------------ 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/themes/google-dark.sh b/themes/google-dark.sh index 082edca..4b1e6db 100755 --- a/themes/google-dark.sh +++ b/themes/google-dark.sh @@ -1,28 +1,28 @@ #!/usr/bin/env bash # ====================CONFIG THIS =============================== # -export COLOR_01="#1D1F21" # Black -export COLOR_02="#CC342B" # Red -export COLOR_03="#198844" # Green -export COLOR_04="#FBA922" # Yellow -export COLOR_05="#3971ED" # Blue -export COLOR_06="#A36AC7" # Cyan -export COLOR_07="#3971ED" # Magenta -export COLOR_08="#C5C8C6" # Light gray +export COLOR_01="#000000" # Black +export COLOR_02="#EA4335" # Red +export COLOR_03="#34A853" # Green +export COLOR_04="#FBBC05" # Yellow +export COLOR_05="#4285F4" # Blue +export COLOR_06="#A142F4" # Cyan +export COLOR_07="#24C1E0" # Purple +export COLOR_08="#EEEEEE" # Light gray -export COLOR_09="#969896" # Dark gray -export COLOR_10="#CC342B" # Light Red -export COLOR_11="#198844" # Light Green -export COLOR_12="#FBA922" # Light Yellow -export COLOR_13="#3971ED" # Light Blue -export COLOR_14="#A36AC7" # Light Cyan -export COLOR_15="#3971ED" # Light Magenta +export COLOR_09="#656565" # Dark gray +export COLOR_10="#EA4335" # Bright Red +export COLOR_11="#34A853" # Bright Green +export COLOR_12="#FBBC05" # Bright Yellow +export COLOR_13="#4285F4" # Bright Blue +export COLOR_14="#A142F4" # Bright Cyan +export COLOR_15="#24C1E0" # Bright Purple export COLOR_16="#FFFFFF" # White -export BACKGROUND_COLOR="#1D1F21" # Background Color -export FOREGROUND_COLOR="#B4B7B4" # Foreground Color (text) +export BACKGROUND_COLOR="#000000" # Background Color +export FOREGROUND_COLOR="#EEEEEE" # Foreground Color (text) export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color -export PROFILE_NAME="base16: Google (dark)" +export PROFILE_NAME="Google Dark" # ============================================= diff --git a/themes/google-light.sh b/themes/google-light.sh index f888d7a..c8205a3 100755 --- a/themes/google-light.sh +++ b/themes/google-light.sh @@ -1,28 +1,28 @@ #!/usr/bin/env bash # ====================CONFIG THIS =============================== # -export COLOR_01="#FFFFFF" # Black -export COLOR_02="#CC342B" # Red -export COLOR_03="#198844" # Green -export COLOR_04="#FBA921" # Yellow -export COLOR_05="#3870ED" # Blue -export COLOR_06="#A26AC7" # Cyan -export COLOR_07="#3870ED" # Magenta -export COLOR_08="#373B41" # Light gray +export COLOR_01="#000000" # Black +export COLOR_02="#EA4335" # Red +export COLOR_03="#34A853" # Green +export COLOR_04="#FBBC05" # Yellow +export COLOR_05="#4285F4" # Blue +export COLOR_06="#A142F4" # Cyan +export COLOR_07="#24C1E0" # Purple +export COLOR_08="#EEEEEE" # Light gray -export COLOR_09="#C5C8C6" # Dark gray -export COLOR_10="#CC342B" # Light Red -export COLOR_11="#198844" # Light Green -export COLOR_12="#FBA921" # Light Yellow -export COLOR_13="#3870ED" # Light Blue -export COLOR_14="#A26AC7" # Light Cyan -export COLOR_15="#3870ED" # Light Magenta -export COLOR_16="#1D1F21" # White +export COLOR_09="#656565" # Dark gray +export COLOR_10="#EA4335" # Bright Red +export COLOR_11="#34A853" # Bright Green +export COLOR_12="#FBBC05" # Bright Yellow +export COLOR_13="#4285F4" # Bright Blue +export COLOR_14="#A142F4" # Bright Cyan +export COLOR_15="#24C1E0" # Bright Purple +export COLOR_16="#FFFFFF" # White export BACKGROUND_COLOR="#FFFFFF" # Background Color -export FOREGROUND_COLOR="#373B41" # Foreground Color (text) +export FOREGROUND_COLOR="#656565" # Foreground Color (text) export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color -export PROFILE_NAME="base16: Google (light)" +export PROFILE_NAME="Google Light" # =============================================