diff options
author | robot-contrib <[email protected]> | 2023-12-09 00:19:25 +0300 |
---|---|---|
committer | robot-contrib <[email protected]> | 2023-12-09 00:50:41 +0300 |
commit | 83b8a2f9228353759e59a093cb3c1270ea2c9d5b (patch) | |
tree | a90f4f91780c0613bea19f33ff8af8e93a335e8b /contrib/python/Pygments/py3/pygments/styles/native.py | |
parent | 460528e80f26d04487dc242b7333d45bbeb43a4d (diff) |
Update contrib/python/Pygments/py3 to 2.17.2
Diffstat (limited to 'contrib/python/Pygments/py3/pygments/styles/native.py')
-rw-r--r-- | contrib/python/Pygments/py3/pygments/styles/native.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/contrib/python/Pygments/py3/pygments/styles/native.py b/contrib/python/Pygments/py3/pygments/styles/native.py index 1cc78fe2b2c..11f83db4b98 100644 --- a/contrib/python/Pygments/py3/pygments/styles/native.py +++ b/contrib/python/Pygments/py3/pygments/styles/native.py @@ -13,11 +13,15 @@ from pygments.token import Keyword, Name, Comment, String, Error, \ Number, Operator, Generic, Token, Whitespace +__all__ = ['NativeStyle'] + + class NativeStyle(Style): """ Pygments version of the "native" vim theme. """ - + name = 'native' + background_color = '#202020' highlight_color = '#404040' line_number_color = '#aaaaaa' |