eric6/ThirdParty/Pygments/pygments/styles/monokai.py

changeset 7547
21b0534faebc
parent 6942
2602857055c5
child 7701
25f42e208e08
equal deleted inserted replaced
7546:bf5f777260a6 7547:21b0534faebc
5 5
6 Mimic the Monokai color scheme. Based on tango.py. 6 Mimic the Monokai color scheme. Based on tango.py.
7 7
8 http://www.monokai.nl/blog/2006/07/15/textmate-color-theme/ 8 http://www.monokai.nl/blog/2006/07/15/textmate-color-theme/
9 9
10 :copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS. 10 :copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS.
11 :license: BSD, see LICENSE for details. 11 :license: BSD, see LICENSE for details.
12 """ 12 """
13 13
14 from pygments.style import Style 14 from pygments.style import Style
15 from pygments.token import Keyword, Name, Comment, String, Error, Text, \ 15 from pygments.token import Keyword, Name, Comment, String, Error, Text, \
90 String.Other: "", # class: 'sx' 90 String.Other: "", # class: 'sx'
91 String.Regex: "", # class: 'sr' 91 String.Regex: "", # class: 'sr'
92 String.Single: "", # class: 's1' 92 String.Single: "", # class: 's1'
93 String.Symbol: "", # class: 'ss' 93 String.Symbol: "", # class: 'ss'
94 94
95
95 Generic: "", # class: 'g' 96 Generic: "", # class: 'g'
96 Generic.Deleted: "#f92672", # class: 'gd', 97 Generic.Deleted: "#f92672", # class: 'gd',
97 Generic.Emph: "italic", # class: 'ge' 98 Generic.Emph: "italic", # class: 'ge'
98 Generic.Error: "", # class: 'gr' 99 Generic.Error: "", # class: 'gr'
99 Generic.Heading: "", # class: 'gh' 100 Generic.Heading: "", # class: 'gh'
100 Generic.Inserted: "#a6e22e", # class: 'gi' 101 Generic.Inserted: "#a6e22e", # class: 'gi'
101 Generic.Output: "", # class: 'go' 102 Generic.Output: "#66d9ef", # class: 'go'
102 Generic.Prompt: "", # class: 'gp' 103 Generic.Prompt: "bold #f92672", # class: 'gp'
103 Generic.Strong: "bold", # class: 'gs' 104 Generic.Strong: "bold", # class: 'gs'
104 Generic.Subheading: "#75715e", # class: 'gu' 105 Generic.Subheading: "#75715e", # class: 'gu'
105 Generic.Traceback: "", # class: 'gt' 106 Generic.Traceback: "", # class: 'gt'
106 } 107 }

eric ide

mercurial