We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec6f46d commit c9fa71bCopy full SHA for c9fa71b
1 file changed
src/sqlfluff/core/enums.py
@@ -1,7 +1,7 @@
1
"""Enums used by sqlfluff."""
2
from enum import Enum
3
4
-from colorama import Fore, Style
+from colorama import Back, Fore, Style
5
6
7
class FormatType(Enum):
@@ -21,4 +21,4 @@ class Color(Enum):
21
red = Fore.RED
22
green = Fore.GREEN
23
blue = Fore.BLUE
24
- lightgrey = Fore.BLACK + Style.BRIGHT
+ lightgrey = Fore.BLACK + Back.WHITE + Style.BRIGHT
0 commit comments