Fix style for jql_pygments.py

This commit is contained in:
Roland Thomas Jr 2024-05-29 22:55:54 -04:00
parent fca429f9a2
commit c84ce4ca72
Signed by: roland
GPG Key ID: 7C3C2B085A4C2872
1 changed files with 9 additions and 8 deletions

View File

@ -1,3 +1,4 @@
import pygments
from pygments.lexer import RegexLexer, include from pygments.lexer import RegexLexer, include
from pygments.token import Text, Keyword, Operator, Punctuation, Name, String, Whitespace from pygments.token import Text, Keyword, Operator, Punctuation, Name, String, Whitespace
from prompt_toolkit import PromptSession from prompt_toolkit import PromptSession
@ -36,14 +37,14 @@ class JQLLexer(RegexLexer):
} }
nord_style = Style.from_dict({ nord_style = Style.from_dict({
'whitespace': '#FFFFFF', 'pygments.whitespace': '#FFFFFF',
'operator': '#B48EAD', 'pygments.operator': '#B48EAD',
'keyword': '#81A1C1 bold', 'pygments.keyword': '#81A1C1 bold',
'punctuation': '#BF616A', 'pygments.punctuation': '#BF616A',
# 'name.attribute': '#A3BE8C', 'pygments.name.attribute': '#A3BE8C',
# 'name.function': '#B48EAD', 'pygments.name.function': '#B48EAD',
'string': '#EBCB8B', 'pygments.string': '#EBCB8B',
'text': '#D8DEE9', 'pygments.text': '#D8DEE9',
}) })
completions = [ completions = [