feat: pack creating

This commit is contained in:
Kentai Radiquum 2025-05-05 01:33:58 +05:00
parent 5be021789b
commit af7b8a6fea
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
27 changed files with 677 additions and 130 deletions

5
gui/.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,5 @@
{
"recommendations": [
"bradlc.vscode-tailwindcss"
]
}

20
gui/.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,20 @@
{
"files.associations": {
"*.css": "tailwindcss"
},
"tailwindCSS.classAttributes": [
"class",
"className",
"theme"
],
"tailwindCSS.experimental.classRegex": [
[
"twMerge\\(([^)]*)\\)",
"[\"'`]([^\"'`]*).*?[\"'`]"
],
[
"createTheme(?:<\\w+>)?\\s*\\(([^)]*)\\)",
"{?\\s?[\\w].*:\\s*?[\"'`]([^\"'`]*).*?,?\\s?}?"
]
]
}