Skip to content

Commit

Permalink
Merge pull request #1 from dnamsons/haskell-improvements
Browse files Browse the repository at this point in the history
Improvements for Haskell syntax coloring
  • Loading branch information
dnamsons authored Nov 10, 2019
2 parents 458b2b8 + 1061991 commit 57bd19a
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions themes/Kimbie Dark+-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,13 @@
"name": "Keywords",
"scope": [
"keyword",
"keyword.control"
"keyword.control",
"keyword.operator.haskell",
"keyword.other.haskell",
"keyword.other.forall.haskell",
"keyword.other.arrow.haskell",
"keyword.other.big-arrow.haskell",
"keyword.other.double-colon.haskell",
],
"settings": {
"foreground": "#98676a"
Expand Down Expand Up @@ -246,7 +252,8 @@
"scope": [
"constant",
"meta.object-literal.key",
"constant.other.symbol"
"constant.other.symbol",
"storage.type.haskell"
],
"settings": {
"foreground": "#f79a32"
Expand Down Expand Up @@ -451,5 +458,24 @@
"foreground": "#dc3958"
}
},
{
"scope": [
"entity.name.function.infix.haskell",
"entity.other.inherited-class.haskell"
],
"settings": {
"foreground": "#d3af86"
}
},
{
"name": "Preprocessor",
"scope": [
"meta.preprocessor.haskell",
"keyword.other.preprocessor.haskell"
],
"settings": {
"foreground": "#7e602c"
}
}
]
}

0 comments on commit 57bd19a

Please sign in to comment.