diff --git a/colors.txt b/colors.txt index f6a39c6..c6cbe66 100644 --- a/colors.txt +++ b/colors.txt @@ -25,6 +25,7 @@ cyan-500: #02c7be blue-500: #027aff +purple-300: #c076e5 purple-500: #b051de pink-500: #ff2e55 diff --git a/demos/.toml b/demos/.toml new file mode 100644 index 0000000..960b62f --- /dev/null +++ b/demos/.toml @@ -0,0 +1,10 @@ +[section] +key = "value" +number = 123 +object = { key = "value" } +array = ["one", "two", "three"] + +# This is a comment + +[section.subsection] +property = "value" diff --git a/themes/Clarity Noir-color-theme.json b/themes/Clarity Noir-color-theme.json index 38464fb..b44b00f 100644 --- a/themes/Clarity Noir-color-theme.json +++ b/themes/Clarity Noir-color-theme.json @@ -358,6 +358,34 @@ "settings": { "foreground": "#686868" } + }, + { + "name": "[TOML] Properties > Assignment", + "scope": "punctuation.eq.toml", + "settings": { + "foreground": "#686868" + } + }, + { + "name": "[TOML] Tables > Inline > Punctuation", + "scope": "punctuation.definition.table.inline.toml", + "settings": { + "foreground": "#8C8C8C" + } + }, + { + "name": "[TOML] Tables > Name", + "scope": "support.type.property-name.table.toml", + "settings": { + "foreground": "#c076e5" + } + }, + { + "name": "[TOML] Tables > Name > Punctuation", + "scope": "punctuation.separator.dot.toml", + "settings": { + "foreground": "#8C8C8C" + } } ] }