diff options
| author | gbrandl <devnull@localhost> | 2007-05-03 18:23:03 +0200 |
|---|---|---|
| committer | gbrandl <devnull@localhost> | 2007-05-03 18:23:03 +0200 |
| commit | e130dbff2eb591c7cdca4a0bef90b63502cd3d4e (patch) | |
| tree | fcb7f3140464f1be96ff5a119c154b3ace677df4 /pygments/styles/fruity.py | |
| parent | 2af8e713b4d89c8961c419db4818f11d43030643 (diff) | |
| download | pygments-e130dbff2eb591c7cdca4a0bef90b63502cd3d4e.tar.gz | |
[svn] Add whitespace filter. Add a few more filter unit tests.
Diffstat (limited to 'pygments/styles/fruity.py')
| -rw-r--r-- | pygments/styles/fruity.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/styles/fruity.py b/pygments/styles/fruity.py index ba1f388a..95fbcc3e 100644 --- a/pygments/styles/fruity.py +++ b/pygments/styles/fruity.py @@ -11,7 +11,7 @@ from pygments.style import Style from pygments.token import Token, Comment, Name, Keyword, \ - Generic, Number, String + Generic, Number, String, Whitespace class FruityStyle(Style): """ @@ -21,6 +21,7 @@ class FruityStyle(Style): background_color = '#111111' styles = { + Whitespace: '#888888', Token: '#ffffff', Generic.Output: '#444444 bg:#222222', Keyword: '#fb660a bold', |
