diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-09 14:39:19 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-09 14:39:19 +0300 |
commit | c04b663c7bb4b750deeb8f48f620497ec13da8fa (patch) | |
tree | 151ebc8bfdd2ad918caf5e6e2d8013e14272ddf8 /contrib/python/Pygments/py3/pygments/styles/native.py | |
parent | 0d55ca22c507d18c2f35718687e0b06d9915397b (diff) | |
download | ydb-c04b663c7bb4b750deeb8f48f620497ec13da8fa.tar.gz |
intermediate changes
ref:2d4f292087954c9344efdabb7b2a67f466263c65
Diffstat (limited to 'contrib/python/Pygments/py3/pygments/styles/native.py')
-rw-r--r-- | contrib/python/Pygments/py3/pygments/styles/native.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/contrib/python/Pygments/py3/pygments/styles/native.py b/contrib/python/Pygments/py3/pygments/styles/native.py index 9c2f2c16b8..fa4687c71f 100644 --- a/contrib/python/Pygments/py3/pygments/styles/native.py +++ b/contrib/python/Pygments/py3/pygments/styles/native.py @@ -4,7 +4,7 @@ pygments version of my "native" vim theme. - :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -26,27 +26,27 @@ class NativeStyle(Style): Token: '#d0d0d0', Whitespace: '#666666', - Comment: 'italic #999999', + Comment: 'italic #ababab', Comment.Preproc: 'noitalic bold #cd2828', Comment.Special: 'noitalic bold #e50808 bg:#520000', - Keyword: 'bold #6ab825', + Keyword: 'bold #6ebf26', Keyword.Pseudo: 'nobold', - Operator.Word: 'bold #6ab825', + Operator.Word: 'bold #6ebf26', String: '#ed9d13', String.Other: '#ffa500', - Number: '#3677a9', + Number: '#51b2fd', - Name.Builtin: '#24909d', + Name.Builtin: '#2fbccd', Name.Variable: '#40ffff', Name.Constant: '#40ffff', - Name.Class: 'underline #447fcf', - Name.Function: '#447fcf', - Name.Namespace: 'underline #447fcf', + Name.Class: 'underline #71adff', + Name.Function: '#71adff', + Name.Namespace: 'underline #71adff', Name.Exception: '#bbbbbb', - Name.Tag: 'bold #6ab825', + Name.Tag: 'bold #6ebf26', Name.Attribute: '#bbbbbb', Name.Decorator: '#ffa500', |