svelte-readme 4.1.0 → 4.3.0

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/dist/svelte.css CHANGED
@@ -1,15 +1,15 @@
1
1
  .language-svelte .tag {
2
- color: #22863a;
2
+ color: var(--sr-hl-green);
3
3
  }
4
4
  .language-svelte .attr-name {
5
- color: #6f42c1;
5
+ color: var(--sr-hl-purple);
6
6
  }
7
7
  .language-svelte .attr-value {
8
- color: #032f62;
8
+ color: var(--sr-hl-blue-dark);
9
9
  }
10
10
  .language-svelte .selector {
11
- color: #22863a;
11
+ color: var(--sr-hl-green);
12
12
  }
13
13
  .language-svelte .property {
14
- color: #005cc5;
14
+ color: var(--sr-hl-blue);
15
15
  }
@@ -1,12 +1,12 @@
1
1
  .language-typescript,
2
2
  .language-javascript {
3
- color: #0550ae;
3
+ color: var(--sr-hl-blue-mid);
4
4
  }
5
5
  .language-typescript .string,
6
6
  .language-javascript .string {
7
- color: #0a3069;
7
+ color: var(--sr-hl-blue-deep);
8
8
  }
9
9
  .language-typescript .class-name,
10
10
  .language-javascript .class-name {
11
- color: #24292f;
11
+ color: var(--sr-hl-gray-dark);
12
12
  }
@@ -1 +1 @@
1
- export declare function purgeUnusedCss(rawCss: string, html: string, alwaysKeepClasses?: string[]): string;
1
+ export declare function purgeUnusedCss(rawCss: string, html: string, alwaysKeepTokens?: string[]): string;
package/dist/yaml.css CHANGED
@@ -1,3 +1,3 @@
1
1
  .language-yaml {
2
- color: #0550ae;
2
+ color: var(--sr-hl-blue-mid);
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-readme",
3
- "version": "4.1.0",
3
+ "version": "4.3.0",
4
4
  "license": "MIT",
5
5
  "description": "Develop and demo your Svelte components in your README.md",
6
6
  "author": "Eric Liu (https://github.com/metonym)",