create-svelte-docsmith 0.2.0 → 0.2.1
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/index.js +2 -2
- package/package.json +1 -1
- package/template/package.json +1 -1
- package/template/src/app.css +5 -4
package/index.js
CHANGED
|
@@ -8,8 +8,8 @@ import * as p from '@clack/prompts';
|
|
|
8
8
|
const templateDir = fileURLToPath(new URL('./template', import.meta.url));
|
|
9
9
|
|
|
10
10
|
const PRESETS = [
|
|
11
|
-
{ value: 'default', label: 'Default (
|
|
12
|
-
{ value: '
|
|
11
|
+
{ value: 'default', label: 'Default (Darkmatter)' },
|
|
12
|
+
{ value: 'tangerine', label: 'Tangerine' },
|
|
13
13
|
{ value: 'amethyst', label: 'Amethyst' },
|
|
14
14
|
{ value: 'graphite', label: 'Graphite' },
|
|
15
15
|
{ value: 'evergreen', label: 'Evergreen' },
|
package/package.json
CHANGED
package/template/package.json
CHANGED
package/template/src/app.css
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
* typography and animation plugins. */
|
|
6
6
|
@import 'svelte-docsmith/theme.css';
|
|
7
7
|
|
|
8
|
-
/*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
8
|
+
/* Darkmatter is the default, already applied by theme.css. Prefer a different
|
|
9
|
+
* look? Import a preset after theme.css and it wins:
|
|
10
|
+
* @import 'svelte-docsmith/themes/amethyst.css';
|
|
11
|
+
* Available: tangerine, amethyst, graphite, evergreen, rose, ocean, nord,
|
|
12
|
+
* claude, bubblegum, mono. Or override individual tokens yourself. */
|