Fixed bug where everything was bolded after failed command
diff --git a/themes/minimal/minimal.theme.bash b/themes/minimal/minimal.theme.bash
index a30c629..e70165d 100644
--- a/themes/minimal/minimal.theme.bash
+++ b/themes/minimal/minimal.theme.bash
@@ -2,7 +2,7 @@
 	if [[ $? -eq 0 ]]; then
 		PS1="\W "
 	else
-		PS1="${bold_red}\W ${reset_color}"
+		PS1="${bold_red}\W ${normal}"
 	fi
 }