diff options
author | gbrandl <devnull@localhost> | 2007-05-18 14:56:06 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-05-18 14:56:06 +0200 |
commit | 1c916f8a9be24534d8343683e0601a8dff8eb061 (patch) | |
tree | 9585d218fb09cced2842eab7c0c3ff5ae4371136 /pygments/styles/borland.py | |
parent | 51828346e2b9740b2594947103589fb64db08291 (diff) | |
download | pygments-1c916f8a9be24534d8343683e0601a8dff8eb061.tar.gz |
[svn] Update the Borland style (ticket #240)
Diffstat (limited to 'pygments/styles/borland.py')
-rw-r--r-- | pygments/styles/borland.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/pygments/styles/borland.py b/pygments/styles/borland.py index 5763073b..6139e845 100644 --- a/pygments/styles/borland.py +++ b/pygments/styles/borland.py @@ -3,7 +3,7 @@ pygments.styles.borland ~~~~~~~~~~~~~~~~~~~~~~~ - Style similar to the style used in the borland ides. + Style similar to the style used in the Borland IDEs. :copyright: 2006-2007 by Armin Ronacher. :license: BSD, see LICENSE for more details. @@ -25,15 +25,16 @@ class BorlandStyle(Style): Whitespace: '#bbbbbb', Comment: 'italic #008800', - Comment.Preproc: 'noitalic', + Comment.Preproc: 'noitalic #008080', Comment.Special: 'noitalic bold', String: '#0000FF', + String.Char: '#800080', Number: '#0000FF', - Keyword: 'bold', + Keyword: 'bold #000080', Operator.Word: 'bold', - Name.Tag: 'bold', - Name.Attribute: 'italic', + Name.Tag: 'bold #000080', + Name.Attribute: '#FF0000', Generic.Heading: '#999999', Generic.Subheading: '#aaaaaa', |