We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 667721a commit 1534481Copy full SHA for 1534481
1 file changed
gdscript_style.py
@@ -1,5 +1,6 @@
1
from pygments.style import Style
2
from pygments.token import (
3
+ Text,
4
Keyword,
5
Name,
6
Comment,
@@ -16,6 +17,7 @@ class GDScriptStyle(Style):
16
17
background_color = "#1d2229"
18
19
styles = {
20
+ Text: "#ffffff", # text
21
Whitespace: "#bbbbbb", # for whitespace
22
Comment: "#cdcfd2", # any kind of comments
23
Punctuation: "#abc9ff", # punctuation (e.g. [!.,])
0 commit comments