diff options
author | Gaurav Jain <gaurav@gauravjain.org> | 2014-04-24 12:50:00 -0400 |
---|---|---|
committer | Gaurav Jain <gaurav@gauravjain.org> | 2014-04-24 12:50:00 -0400 |
commit | f80c798a3b37ba28a61c896c62ce939e1ee0918b (patch) | |
tree | e131d254982c1d401560c8ecf50839d3e9469def /pygments/styles/xcode.py | |
parent | 2586a63b4796a97bf0c5549a7f708a07f716fc59 (diff) | |
parent | a5368fe16c36cb6d60eaa7985d6c1151451f8ed1 (diff) | |
download | pygments-f80c798a3b37ba28a61c896c62ce939e1ee0918b.tar.gz |
Merged birkenfeld/pygments-main into default
Diffstat (limited to 'pygments/styles/xcode.py')
-rw-r--r-- | pygments/styles/xcode.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/pygments/styles/xcode.py b/pygments/styles/xcode.py index e2ecf2aa..8bb2c24e 100644 --- a/pygments/styles/xcode.py +++ b/pygments/styles/xcode.py @@ -11,7 +11,7 @@ from pygments.style import Style from pygments.token import Keyword, Name, Comment, String, Error, \ - Number, Operator + Number, Operator, Literal class XcodeStyle(Style): @@ -30,13 +30,13 @@ class XcodeStyle(Style): Operator: '#000000', - Keyword: '#AA0D92', + Keyword: '#A90D91', Name: '#000000', Name.Attribute: '#836C28', - Name.Class: '#000000', + Name.Class: '#3F6E75', Name.Function: '#000000', - Name.Builtin: '#AA0D92', + Name.Builtin: '#A90D91', # In Obj-C code this token is used to colour Cocoa types Name.Builtin.Pseudo: '#5B269A', Name.Variable: '#000000', @@ -45,6 +45,7 @@ class XcodeStyle(Style): # Workaround for a BUG here: lexer treats multiline method signatres as labels Name.Label: '#000000', - Number: '#2300CE', + Literal: '#1C01CE', + Number: '#1C01CE', Error: '#000000', } |