|
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-2012 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 } |