summaryrefslogtreecommitdiffstats
path: root/contrib/python/Pygments/py3/pygments/styles/stata_light.py
diff options
context:
space:
mode:
authorrobot-contrib <[email protected]>2023-12-09 00:19:25 +0300
committerrobot-contrib <[email protected]>2023-12-09 00:50:41 +0300
commit83b8a2f9228353759e59a093cb3c1270ea2c9d5b (patch)
treea90f4f91780c0613bea19f33ff8af8e93a335e8b /contrib/python/Pygments/py3/pygments/styles/stata_light.py
parent460528e80f26d04487dc242b7333d45bbeb43a4d (diff)
Update contrib/python/Pygments/py3 to 2.17.2
Diffstat (limited to 'contrib/python/Pygments/py3/pygments/styles/stata_light.py')
-rw-r--r--contrib/python/Pygments/py3/pygments/styles/stata_light.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/python/Pygments/py3/pygments/styles/stata_light.py b/contrib/python/Pygments/py3/pygments/styles/stata_light.py
index f7923d3624b..5e034568cae 100644
--- a/contrib/python/Pygments/py3/pygments/styles/stata_light.py
+++ b/contrib/python/Pygments/py3/pygments/styles/stata_light.py
@@ -14,12 +14,17 @@ from pygments.token import Keyword, Name, Comment, String, Error, \
Number, Operator, Whitespace, Text
+__all__ = ['StataLightStyle']
+
+
class StataLightStyle(Style):
"""
Light mode style inspired by Stata's do-file editor. This is not
meant to be a complete style, just for use with Stata.
"""
+ name = 'stata-light'
+
styles = {
Text: '#111111',
Whitespace: '#bbbbbb',