diff options
author | gbrandl <devnull@localhost> | 2007-03-24 20:33:50 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-03-24 20:33:50 +0100 |
commit | e13fef39421ecd812cce5be2ae0ecd981486d1e1 (patch) | |
tree | f8883a8f3e469f89e4e7877ef8dc5c56a5cb90db /pygments/styles/default.py | |
parent | 40454d552e068c38bb12d821c3b8f70f66672268 (diff) | |
download | pygments-e13fef39421ecd812cce5be2ae0ecd981486d1e1.tar.gz |
[svn] More fixes to the default style, enhancement to the regex lexer.
Diffstat (limited to 'pygments/styles/default.py')
-rw-r--r-- | pygments/styles/default.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pygments/styles/default.py b/pygments/styles/default.py index a256d56d..212e8be2 100644 --- a/pygments/styles/default.py +++ b/pygments/styles/default.py @@ -25,7 +25,7 @@ class DefaultStyle(Style): styles = { Comment: "italic #408080", - Comment.Preproc: "noitalic", + Comment.Preproc: "noitalic #BC7A00", #Keyword: "bold #AA22FF", Keyword: "bold #008000", @@ -38,8 +38,8 @@ class DefaultStyle(Style): #Name.Builtin: "#AA22FF", Name.Builtin: "#008000", #Name.Function: "#00A000", - Name.Function: "#BC7A00", - Name.Class: "#0000FF", + Name.Function: "#0000FF", + Name.Class: "bold #0000FF", Name.Namespace: "bold #0000FF", Name.Exception: "bold #D2413A", #Name.Variable: "#B8860B", @@ -49,7 +49,7 @@ class DefaultStyle(Style): Name.Entity: "bold #999999", #Name.Attribute: "#BB4444", #Name.Attribute: "#705406", - Name.Attribute: "#7D6029", + Name.Attribute: "#7D9029", Name.Tag: "bold #008000", Name.Decorator: "#AA22FF", |