pixelplay 1.0.7 → 1.0.8

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/index.d.mts CHANGED
@@ -1507,7 +1507,7 @@ declare const lightTheme: ThemeTokens;
1507
1507
  declare const darkTheme: ThemeTokens;
1508
1508
  /**
1509
1509
  * Generates a `<style>` block with CSS custom properties for every design
1510
- * theme × light/dark mode. The first theme (rosewood) is output as `:root` / `.dark`.
1510
+ * theme × light/dark mode. The first theme (inkwell) is output as `:root` / `.dark`.
1511
1511
  * All themes also get `[data-design-theme="name"]` attribute selectors so they
1512
1512
  * can be activated by setting the attribute on the root element.
1513
1513
  */
package/dist/index.d.ts CHANGED
@@ -1507,7 +1507,7 @@ declare const lightTheme: ThemeTokens;
1507
1507
  declare const darkTheme: ThemeTokens;
1508
1508
  /**
1509
1509
  * Generates a `<style>` block with CSS custom properties for every design
1510
- * theme × light/dark mode. The first theme (rosewood) is output as `:root` / `.dark`.
1510
+ * theme × light/dark mode. The first theme (inkwell) is output as `:root` / `.dark`.
1511
1511
  * All themes also get `[data-design-theme="name"]` attribute selectors so they
1512
1512
  * can be activated by setting the attribute on the root element.
1513
1513
  */
package/dist/index.js CHANGED
@@ -23953,9 +23953,9 @@ var darkTheme = {
23953
23953
  "annotation-line": colors.gray[500]
23954
23954
  };
23955
23955
  var designThemes = {
23956
+ inkwell: inkwellTheme,
23956
23957
  rosewood: rosewoodTheme,
23957
- botanica: botanicaTheme,
23958
- inkwell: inkwellTheme
23958
+ botanica: botanicaTheme
23959
23959
  };
23960
23960
  function tokensToVarBlock(tokens) {
23961
23961
  return Object.entries(tokens).map(([key, value]) => ` --${key}: ${value};`).join("\n");