diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2023-12-09 00:19:25 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2023-12-09 00:50:41 +0300 |
commit | 83b8a2f9228353759e59a093cb3c1270ea2c9d5b (patch) | |
tree | a90f4f91780c0613bea19f33ff8af8e93a335e8b /contrib/python/Pygments/py3/pygments/styles/onedark.py | |
parent | 460528e80f26d04487dc242b7333d45bbeb43a4d (diff) | |
download | ydb-83b8a2f9228353759e59a093cb3c1270ea2c9d5b.tar.gz |
Update contrib/python/Pygments/py3 to 2.17.2
Diffstat (limited to 'contrib/python/Pygments/py3/pygments/styles/onedark.py')
-rw-r--r-- | contrib/python/Pygments/py3/pygments/styles/onedark.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/contrib/python/Pygments/py3/pygments/styles/onedark.py b/contrib/python/Pygments/py3/pygments/styles/onedark.py index e9e90fd8b8..b145ce91e2 100644 --- a/contrib/python/Pygments/py3/pygments/styles/onedark.py +++ b/contrib/python/Pygments/py3/pygments/styles/onedark.py @@ -16,13 +16,17 @@ from pygments.token import Comment, Keyword, Name, Number, Operator, \ Punctuation, String, Token +__all__ = ['OneDarkStyle'] + + class OneDarkStyle(Style): """ Theme inspired by One Dark Pro for Atom. .. versionadded:: 2.11 """ - + name = 'one-dark' + background_color = '#282C34' styles = { |