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

changeset 6942
2602857055c5
parent 5713
6762afd9f963
child 7547
21b0534faebc
equal deleted inserted replaced
6941:f99d60d6b59b 6942:2602857055c5
1 # -*- coding: utf-8 -*-
2 """
3 pygments.styles.igor
4 ~~~~~~~~~~~~~~~~~~~~
5
6 Igor Pro default style.
7
8 :copyright: Copyright 2006-2017 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