7 |
7 |
8 Pygments style by Miikka Salminen (https://github.com/miikkas) |
8 Pygments style by Miikka Salminen (https://github.com/miikkas) |
9 A desaturated, somewhat subdued style created for the Lovelace interactive |
9 A desaturated, somewhat subdued style created for the Lovelace interactive |
10 learning environment. |
10 learning environment. |
11 |
11 |
12 :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS. |
12 :copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS. |
13 :license: BSD, see LICENSE for details. |
13 :license: BSD, see LICENSE for details. |
14 """ |
14 """ |
15 |
15 |
16 from pygments.style import Style |
16 from pygments.style import Style |
17 from pygments.token import Keyword, Name, Comment, String, Error, \ |
17 from pygments.token import Keyword, Name, Comment, String, Error, \ |
60 Name.Constant: _DOC_ORANGE, |
60 Name.Constant: _DOC_ORANGE, |
61 Name.Decorator: _CLS_CYAN, |
61 Name.Decorator: _CLS_CYAN, |
62 Name.Entity: _ESCAPE_LIME, |
62 Name.Entity: _ESCAPE_LIME, |
63 Name.Exception: _EXCEPT_YELLOW, |
63 Name.Exception: _EXCEPT_YELLOW, |
64 Name.Function: _FUN_BROWN, |
64 Name.Function: _FUN_BROWN, |
|
65 Name.Function.Magic: _DOC_ORANGE, |
65 Name.Label: _LABEL_CYAN, |
66 Name.Label: _LABEL_CYAN, |
66 Name.Namespace: _LABEL_CYAN, |
67 Name.Namespace: _LABEL_CYAN, |
67 Name.Tag: _KW_BLUE, |
68 Name.Tag: _KW_BLUE, |
68 Name.Variable: '#b04040', |
69 Name.Variable: '#b04040', |
69 Name.Variable.Global:_EXCEPT_YELLOW, |
70 Name.Variable.Global:_EXCEPT_YELLOW, |
|
71 Name.Variable.Magic: _DOC_ORANGE, |
70 |
72 |
71 String: _STR_RED, |
73 String: _STR_RED, |
|
74 String.Affix: '#444444', |
72 String.Char: _OW_PURPLE, |
75 String.Char: _OW_PURPLE, |
|
76 String.Delimiter: _DOC_ORANGE, |
73 String.Doc: 'italic '+_DOC_ORANGE, |
77 String.Doc: 'italic '+_DOC_ORANGE, |
74 String.Escape: _ESCAPE_LIME, |
78 String.Escape: _ESCAPE_LIME, |
75 String.Interpol: 'underline', |
79 String.Interpol: 'underline', |
76 String.Other: _OW_PURPLE, |
80 String.Other: _OW_PURPLE, |
77 String.Regex: _OW_PURPLE, |
81 String.Regex: _OW_PURPLE, |