pi-sdk-web 0.1.1 → 0.1.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/static/app.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-sdk-web",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Browser Web access for Pi (AI coding agent) via the Pi SDK - standalone module, zero modification to Pi itself",
5
5
  "type": "module",
6
6
  "bin": {
package/static/app.js CHANGED
@@ -105,7 +105,7 @@ class PiWebClient {
105
105
  // ------------------------------------------------------------------
106
106
 
107
107
  initThemeSwitch() {
108
- const stored = localStorage.getItem('piweb-theme') || 'dark';
108
+ const stored = localStorage.getItem('piweb-theme') || 'bright';
109
109
  this.applyTheme(stored);
110
110
  document.querySelectorAll('.theme-option').forEach((el) => {
111
111
  el.addEventListener('click', () => this.applyTheme(el.dataset.theme));