create-quilltap-theme 2.0.4 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -127,8 +127,8 @@ npx quilltap themes update # Check for updates
|
|
|
127
127
|
|
|
128
128
|
For the latest online documentation:
|
|
129
129
|
|
|
130
|
-
- [Theme Plugin Development Guide](https://github.com/foundry-9/quilltap/blob/main/docs/developer/THEME_PLUGIN_DEVELOPMENT.md) (legacy plugin format)
|
|
131
|
-
- [Plugin Manifest Reference](https://github.com/foundry-9/quilltap/blob/main/docs/developer/PLUGIN_MANIFEST.md)
|
|
130
|
+
- [Theme Plugin Development Guide](https://github.com/foundry-9/quilltap-server/blob/main/docs/developer/THEME_PLUGIN_DEVELOPMENT.md) (legacy plugin format)
|
|
131
|
+
- [Plugin Manifest Reference](https://github.com/foundry-9/quilltap-server/blob/main/docs/developer/PLUGIN_MANIFEST.md)
|
|
132
132
|
- [@quilltap/theme-storybook](https://www.npmjs.com/package/@quilltap/theme-storybook) (for plugin development with Storybook)
|
|
133
133
|
|
|
134
134
|
## License
|
package/dist/index.js
CHANGED
|
@@ -213,7 +213,7 @@ async function scaffoldPlugin(config) {
|
|
|
213
213
|
log(` ${colors.cyan}npm publish --access public${colors.reset}`);
|
|
214
214
|
log("");
|
|
215
215
|
info(`Local documentation: docs/THEME_PLUGIN_DEVELOPMENT.md`);
|
|
216
|
-
info(`Online documentation: https://github.com/foundry-9/quilltap/blob/main/docs/developer/THEME_PLUGIN_DEVELOPMENT.md`);
|
|
216
|
+
info(`Online documentation: https://github.com/foundry-9/quilltap-server/blob/main/docs/developer/THEME_PLUGIN_DEVELOPMENT.md`);
|
|
217
217
|
log("");
|
|
218
218
|
}
|
|
219
219
|
function parseArgs() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-quilltap-theme",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "Scaffold a new Quilltap theme plugin",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"repository": {
|
|
30
30
|
"type": "git",
|
|
31
|
-
"url": "https://github.com/foundry-9/quilltap.git",
|
|
31
|
+
"url": "https://github.com/foundry-9/quilltap-server.git",
|
|
32
32
|
"directory": "packages/create-quilltap-theme"
|
|
33
33
|
},
|
|
34
34
|
"engines": {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/node": "^22.19.15",
|
|
39
|
-
"esbuild": "^0.
|
|
39
|
+
"esbuild": "^0.28.0",
|
|
40
40
|
"typescript": "^5.9.3"
|
|
41
41
|
}
|
|
42
42
|
}
|
|
@@ -235,6 +235,10 @@
|
|
|
235
235
|
/* --qt-chat-silent-fg: var(--qt-chat-assistant-fg); */
|
|
236
236
|
/* --qt-chat-silent-border: #7a9e8e; */
|
|
237
237
|
/* --qt-chat-silent-label-fg: #5d7e6e; */
|
|
238
|
+
/* --qt-chat-wardrobe-bg: color-mix(in srgb, var(--qt-chat-assistant-bg) 60%, #c4a24e 40%); */
|
|
239
|
+
/* --qt-chat-wardrobe-fg: var(--qt-chat-assistant-fg); */
|
|
240
|
+
/* --qt-chat-wardrobe-border: #c4a24e; */
|
|
241
|
+
/* --qt-chat-wardrobe-label-fg: #9a7d2e; */
|
|
238
242
|
/* --qt-chat-composer-bg: var(--color-background); */
|
|
239
243
|
/* --qt-chat-composer-border: var(--color-border); */
|
|
240
244
|
/* --qt-chat-composer-radius: var(--radius-lg); */
|
|
@@ -317,8 +321,8 @@
|
|
|
317
321
|
/* --qt-badge-outline-border: var(--color-border); */
|
|
318
322
|
/* --qt-badge-character-bg: hsl(225 55% 55% / 0.12); */
|
|
319
323
|
/* --qt-badge-character-fg: hsl(225 55% 42%); */
|
|
320
|
-
/* --qt-badge-
|
|
321
|
-
/* --qt-badge-
|
|
324
|
+
/* --qt-badge-user-character-bg: hsl(270 45% 55% / 0.12); */
|
|
325
|
+
/* --qt-badge-user-character-fg: hsl(270 45% 42%); */
|
|
322
326
|
/* --qt-badge-chat-bg: hsl(152 50% 38% / 0.12); */
|
|
323
327
|
/* --qt-badge-chat-fg: hsl(152 50% 30%); */
|
|
324
328
|
/* --qt-badge-tag-bg: hsl(25 70% 48% / 0.12); */
|
|
@@ -10,7 +10,7 @@ Use the scaffolding tool to create a new theme plugin in seconds:
|
|
|
10
10
|
npm init quilltap-theme my-theme
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
This creates a complete, ready-to-customize theme plugin. See [create-quilltap-theme](https://github.com/foundry-9/quilltap/tree/main/packages/create-quilltap-theme) for more options.
|
|
13
|
+
This creates a complete, ready-to-customize theme plugin. See [create-quilltap-theme](https://github.com/foundry-9/quilltap-server/tree/main/packages/create-quilltap-theme) for more options.
|
|
14
14
|
|
|
15
15
|
If you prefer to set up manually or want to understand all the pieces, continue reading below.
|
|
16
16
|
|
|
@@ -1255,9 +1255,9 @@ npm run build
|
|
|
1255
1255
|
|
|
1256
1256
|
## Resources
|
|
1257
1257
|
|
|
1258
|
-
- [Quilltap Plugin Manifest Reference](https://github.com/foundry-9/quilltap/blob/main/docs/PLUGIN_MANIFEST.md)
|
|
1259
|
-
- [Theme Utility Classes](https://github.com/foundry-9/quilltap/blob/main/features/complete/theme-utility-classes.md)
|
|
1260
|
-
- [@quilltap/plugin-types Package](https://github.com/foundry-9/quilltap/tree/main/packages/plugin-types)
|
|
1261
|
-
- [@quilltap/theme-storybook Package](https://github.com/foundry-9/quilltap/tree/main/packages/theme-storybook)
|
|
1258
|
+
- [Quilltap Plugin Manifest Reference](https://github.com/foundry-9/quilltap-server/blob/main/docs/PLUGIN_MANIFEST.md)
|
|
1259
|
+
- [Theme Utility Classes](https://github.com/foundry-9/quilltap-server/blob/main/features/complete/theme-utility-classes.md)
|
|
1260
|
+
- [@quilltap/plugin-types Package](https://github.com/foundry-9/quilltap-server/tree/main/packages/plugin-types)
|
|
1261
|
+
- [@quilltap/theme-storybook Package](https://github.com/foundry-9/quilltap-server/tree/main/packages/theme-storybook)
|
|
1262
1262
|
- [HSL Color Picker](https://hslpicker.com/)
|
|
1263
1263
|
- [Contrast Checker](https://webaim.org/resources/contrastchecker/)
|