From 3a710abe4c33f6ddc208004649e7b7cf12d32f6c Mon Sep 17 00:00:00 2001 From: p-sw Date: Wed, 29 May 2024 19:36:59 +0900 Subject: [PATCH] fix: fix tailwind intellisense sometimes not working in Colors --- .vscode/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 69ed13d..49f84a3 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,7 @@ { "tailwindCSS.experimental.classRegex": [ ["vcn\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"], - ["[cC]olors\\s*=\\s*{([^}]*)}", "[\"'`]([^\"'`]*).*?[\"'`]"] + ["[cC]olors\\s*\\=\\s*{([^]*(?=}))}", "[\"'`]([^\"'`]*).*?[\"'`]"] ] }