ThirdParty/Pygments/pygments/styles/abap.py

changeset 5713
6762afd9f963
equal deleted inserted replaced
5712:f0d08bdeacf4 5713:6762afd9f963
1 # -*- coding: utf-8 -*-
2 """
3 pygments.styles.abap
4 ~~~~~~~~~~~~~~~~~~~~
5
6 ABAP workbench like 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, Error, \
14 Number, Operator
15
16
17 class AbapStyle(Style):
18 default_style = ""
19 styles = {
20 Comment: 'italic #888',
21 Comment.Special: '#888',
22 Keyword: '#00f',
23 Operator.Word: '#00f',
24 Name: '#000',
25 Number: '#3af',
26 String: '#5a2',
27
28 Error: '#F00',
29 }

eric ide

mercurial