mirror of
https://github.com/enkia/tokyo-night-vscode-theme.git
synced 2024-11-07 20:24:11 -05:00
Add Haskell support
This commit is contained in:
parent
51b3d7c859
commit
9e062a3a14
3 changed files with 44 additions and 10 deletions
|
@ -1,5 +1,13 @@
|
|||
# Release Notes
|
||||
|
||||
## 0.3.0
|
||||
`2019-10-22`
|
||||
- Add Haskell Support
|
||||
|
||||
# 0.2.0
|
||||
`2019-10-22`
|
||||
- Update README
|
||||
|
||||
## 0.1.0
|
||||
`2019-10-22`
|
||||
- Initial release
|
||||
|
|
|
@ -437,7 +437,7 @@
|
|||
"scope": [
|
||||
"keyword.operator",
|
||||
"keyword.control.as",
|
||||
"keyword.other.new",
|
||||
"keyword.other",
|
||||
"keyword.operator.bitwise.shift",
|
||||
"punctuation",
|
||||
"punctuation.definition.string",
|
||||
|
@ -463,7 +463,8 @@
|
|||
"keyword.control.import",
|
||||
"keyword.control.export",
|
||||
"keyword.control.from",
|
||||
"keyword.control.default"
|
||||
"keyword.control.default",
|
||||
"meta.import keyword.other"
|
||||
],
|
||||
"settings": {
|
||||
"foreground": "#7dcfff"
|
||||
|
@ -535,13 +536,14 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"name": "Globals, PHP Constants",
|
||||
"name": "Globals, PHP Constants, etc",
|
||||
"scope": [
|
||||
"constant.other.php",
|
||||
"variable.other.global.safer",
|
||||
"variable.other.global.safer punctuation.definition.variable",
|
||||
"variable.other.global",
|
||||
"variable.other.global punctuation.definition.variable"
|
||||
"variable.other.global punctuation.definition.variable",
|
||||
"constant.other"
|
||||
],
|
||||
"settings": {
|
||||
"foreground": "#e0af68"
|
||||
|
@ -702,7 +704,9 @@
|
|||
"support.variable.dom",
|
||||
"support.constant.math",
|
||||
"support.type.object.module",
|
||||
"support.constant.json"
|
||||
"support.constant.json",
|
||||
"entity.name.namespace",
|
||||
"meta.import.qualifier"
|
||||
],
|
||||
"settings": {
|
||||
"foreground": "#0db9d7"
|
||||
|
@ -1334,6 +1338,15 @@
|
|||
"foreground": "#f78f8f"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Preprocessor",
|
||||
"scope": [
|
||||
"meta.preprocessor"
|
||||
],
|
||||
"settings": {
|
||||
"foreground": "#73daca"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "ENV value",
|
||||
"scope": "source.env",
|
||||
|
|
|
@ -436,7 +436,7 @@
|
|||
"scope": [
|
||||
"keyword.operator",
|
||||
"keyword.control.as",
|
||||
"keyword.other.new",
|
||||
"keyword.other",
|
||||
"keyword.operator.bitwise.shift",
|
||||
"punctuation",
|
||||
"punctuation.definition.string",
|
||||
|
@ -462,7 +462,8 @@
|
|||
"keyword.control.import",
|
||||
"keyword.control.export",
|
||||
"keyword.control.from",
|
||||
"keyword.control.default"
|
||||
"keyword.control.default",
|
||||
"meta.import keyword.other"
|
||||
],
|
||||
"settings": {
|
||||
"foreground": "#7dcfff"
|
||||
|
@ -534,13 +535,14 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"name": "Globals, PHP Constants",
|
||||
"name": "Globals, PHP Constants, etc",
|
||||
"scope": [
|
||||
"constant.other.php",
|
||||
"variable.other.global.safer",
|
||||
"variable.other.global.safer punctuation.definition.variable",
|
||||
"variable.other.global",
|
||||
"variable.other.global punctuation.definition.variable"
|
||||
"variable.other.global punctuation.definition.variable",
|
||||
"constant.other.haskell"
|
||||
],
|
||||
"settings": {
|
||||
"foreground": "#e0af68"
|
||||
|
@ -702,7 +704,9 @@
|
|||
"support.variable.dom",
|
||||
"support.constant.math",
|
||||
"support.type.object.module",
|
||||
"support.constant.json"
|
||||
"support.constant.json",
|
||||
"entity.name.namespace",
|
||||
"meta.import.qualifier"
|
||||
],
|
||||
"settings": {
|
||||
"foreground": "#2ac3de"
|
||||
|
@ -1334,6 +1338,15 @@
|
|||
"foreground": "#f7768e"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Preprocessor",
|
||||
"scope": [
|
||||
"meta.preprocessor"
|
||||
],
|
||||
"settings": {
|
||||
"foreground": "#73daca"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "ENV value",
|
||||
"scope": "source.env",
|
||||
|
|
Loading…
Reference in a new issue