summaryrefslogtreecommitdiff
path: root/pygments/styles
diff options
context:
space:
mode:
authort-b <devnull@localhost>2013-10-26 00:14:59 +0200
committert-b <devnull@localhost>2013-10-26 00:14:59 +0200
commit1e80109c27dd4331d09d48472f64d4ebf75c6313 (patch)
treec2f575ccd90876ad63ddd370cf2e8aa07bd3a8cc /pygments/styles
parent0a93b9311f357b424861d6c3f929b5cea0146d1d (diff)
downloadpygments-1e80109c27dd4331d09d48472f64d4ebf75c6313.tar.gz
Add custom style which imitates the offical coloring
Diffstat (limited to 'pygments/styles')
-rw-r--r--pygments/styles/igor.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/pygments/styles/igor.py b/pygments/styles/igor.py
new file mode 100644
index 00000000..c166ab6e
--- /dev/null
+++ b/pygments/styles/igor.py
@@ -0,0 +1,13 @@
+from pygments.style import Style
+from pygments.token import Keyword, Name, Comment, String, Error, \
+ Number, Operator, Generic
+
+class IgorStyle(Style):
+ default_style = ""
+ styles = {
+ Comment: 'italic #FF0000',
+ Keyword: '#0000FF',
+ Name.Function: '#C34E00',
+ Name.Class: '#007575',
+ String: '#009C00'
+ }