|
1 # -*- coding: utf-8 -*- |
|
2 """ |
|
3 pygments.styles.fruity |
|
4 ~~~~~~~~~~~~~~~~~~~~~~ |
|
5 |
|
6 pygments version of my "fruity" vim theme. |
|
7 |
|
8 :copyright: Copyright 2006-2009 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 Token, Comment, Name, Keyword, \ |
|
14 Generic, Number, String, Whitespace |
|
15 |
|
16 class FruityStyle(Style): |
|
17 """ |
|
18 Pygments version of the "native" vim theme. |
|
19 """ |
|
20 |
|
21 background_color = '#111111' |
|
22 highlight_color = '#333333' |
|
23 |
|
24 styles = { |
|
25 Whitespace: '#888888', |
|
26 Token: '#ffffff', |
|
27 Generic.Output: '#444444 bg:#222222', |
|
28 Keyword: '#fb660a bold', |
|
29 Keyword.Pseudo: 'nobold', |
|
30 Number: '#0086f7 bold', |
|
31 Name.Tag: '#fb660a bold', |
|
32 Name.Variable: '#fb660a', |
|
33 Name.Constant: '#fb660a', |
|
34 Comment: '#008800 bg:#0f140f italic', |
|
35 Name.Attribute: '#ff0086 bold', |
|
36 String: '#0086d2', |
|
37 Name.Function: '#ff0086 bold', |
|
38 Generic.Heading: '#ffffff bold', |
|
39 Keyword.Type: '#cdcaa9 bold', |
|
40 Generic.Subheading: '#ffffff bold', |
|
41 Name.Constant: '#0086d2', |
|
42 Comment.Preproc: '#ff0007 bold' |
|
43 } |