You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+14-13Lines changed: 14 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -71,19 +71,20 @@
71
71
"default": {},
72
72
"markdownDescription": "Enable features in languages that are not supported by default. Add a mapping here between the new language and an already supported language.\n E.g.: `{\"plaintext\": \"html\"}`"
73
73
},
74
-
"tailwindCSS.colorDecorators.enabled": {
75
-
"type": "boolean",
76
-
"default": true,
77
-
"scope": "language-overridable"
78
-
},
79
-
"tailwindCSS.colorDecorators.classes": {
80
-
"type": "boolean",
81
-
"default": true,
82
-
"scope": "language-overridable"
83
-
},
84
-
"tailwindCSS.colorDecorators.cssHelpers": {
85
-
"type": "boolean",
86
-
"default": true,
74
+
"tailwindCSS.colorDecorators": {
75
+
"type": "string",
76
+
"enum": [
77
+
"inherit",
78
+
"on",
79
+
"off"
80
+
],
81
+
"markdownEnumDescriptions": [
82
+
"Color decorators are rendered if `editor.colorDecorators` is `true`.",
83
+
"Color decorators are rendered.",
84
+
"Color decorators are not rendered."
85
+
],
86
+
"default": "inherit",
87
+
"markdownDescription": "Controls whether the editor should render inline color decorators for Tailwind CSS classes and helper functions.",
0 commit comments