summaryrefslogtreecommitdiff
path: root/pygments/styles/vim.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/styles/vim.py')
-rw-r--r--pygments/styles/vim.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/pygments/styles/vim.py b/pygments/styles/vim.py
index d941d136..43d1771f 100644
--- a/pygments/styles/vim.py
+++ b/pygments/styles/vim.py
@@ -25,11 +25,13 @@ class VimStyle(Style):
styles = {
Token: "#cccccc",
Whitespace: "",
- Comment: "#00cdcd",
+ Comment: "#000080",
Comment.Preproc: "",
Comment.Special: "bold #cd0000",
Keyword: "#cdcd00",
+ Keyword.Declaration: "#00cd00",
+ Keyword.Namespace: "#cd00cd",
Keyword.Pseudo: "",
Keyword.Type: "#00cd00",
@@ -37,9 +39,8 @@ class VimStyle(Style):
Operator.Word: "#cdcd00",
Name: "",
- Name.Class: "#cd00cd",
+ Name.Class: "#00cdcd",
Name.Builtin: "#cd00cd",
- Name.Namespace: "bold #5c5cff",
Name.Exception: "bold #666699",
Name.Variable: "#00cdcd",
@@ -48,8 +49,8 @@ class VimStyle(Style):
Generic.Heading: "bold #000080",
Generic.Subheading: "bold #800080",
- Generic.Deleted: "#A00000",
- Generic.Inserted: "#00A000",
+ Generic.Deleted: "#cd0000",
+ Generic.Inserted: "#00cd00",
Generic.Error: "#FF0000",
Generic.Emph: "italic",
Generic.Strong: "bold",