diff --git a/clint/textui/colored.py b/clint/textui/colored.py index 86753c6..2fd2323 100644 --- a/clint/textui/colored.py +++ b/clint/textui/colored.py @@ -65,7 +65,7 @@ class ColoredString(object): @property def color_str(self): style = 'BRIGHT' if self.bold else 'NORMAL' - c = '%s%s%s%s' % (getattr(colorama.Fore, self.color), getattr(colorama.Style, style), self.s, colorama.Fore.RESET) + c = '%s%s%s%s%s' % (getattr(colorama.Fore, self.color), getattr(colorama.Style, style), self.s, colorama.Fore.RESET, getattr(colorama.Style, 'NORMAL')) if self.always_color: return c