From f06a6c96977814671030941b0893527dff4fbbe3 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sun, 26 May 2024 17:08:39 +0900 Subject: [PATCH] feat: add colors regex in tailwind intellisense rule --- .vscode/settings.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 06e9b4b..a220d45 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,7 @@ { "tailwindCSS.experimental.classRegex": [ - ["vcn\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"] + ["vcn\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"], + ["colors\\s*=\\s*{([^}]*)}", "[\"'`]([^\"'`]*).*?[\"'`]"] ] -} \ No newline at end of file +} +