ThirdParty/Pygments/pygments/styles/igor.py

changeset 4172
4f20dba37ab6
child 4697
c2e9bf425554
equal deleted inserted replaced
4170:8bc578136279 4172:4f20dba37ab6
1 # -*- coding: utf-8 -*-
2 """
3 pygments.styles.igor
4 ~~~~~~~~~~~~~~~~~~~~
5
6 Igor Pro default style.
7
8 :copyright: Copyright 2006-2014 by the Pygments team, see AUTHORS.
9 :license: BSD, see LICENSE for details.
10 """
11
12 from pygments.style import Style
13 from pygments.token import Keyword, Name, Comment, String
14
15
16 class IgorStyle(Style):
17 """
18 Pygments version of the official colors for Igor Pro procedures.
19 """
20 default_style = ""
21
22 styles = {
23 Comment: 'italic #FF0000',
24 Keyword: '#0000FF',
25 Name.Function: '#C34E00',
26 Name.Decorator: '#CC00A3',
27 Name.Class: '#007575',
28 String: '#009C00'
29 }

eric ide

mercurial