eric6/ThirdParty/Pygments/pygments/styles/rrt.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.rrt
4 ~~~~~~~~~~~~~~~~~~~
5
6 pygments "rrt" theme, based on Zap and Emacs defaults.
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 Comment, Name, Keyword, String
14
15
16 class RrtStyle(Style):
17 """
18 Minimalistic "rrt" theme, based on Zap and Emacs defaults.
19 """
20
21 background_color = '#000000'
22 highlight_color = '#0000ff'
23
24 styles = {
25 Comment: '#00ff00',
26 Name.Function: '#ffff00',
27 Name.Variable: '#eedd82',
28 Name.Constant: '#7fffd4',
29 Keyword: '#ff0000',
30 Comment.Preproc: '#e5e5e5',
31 String: '#87ceeb',
32 Keyword.Type: '#ee82ee',
33 }

eric ide

mercurial