pinokiod 3.212.0 → 3.213.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.212.0",
3
+ "version": "3.213.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/server/index.js CHANGED
@@ -3009,15 +3009,16 @@ class Server {
3009
3009
 
3010
3010
  if (this.theme === "dark") {
3011
3011
  this.colors = {
3012
- color: "rgb(27, 28, 29)",
3013
- // symbolColor: "white"
3014
- symbolColor: "#F4F4F4"
3012
+ //color: "rgb(27, 28, 29)",
3013
+ color: "#252527",
3014
+ symbolColor: "white",
3015
3015
  // color: "rgb(31, 29, 39)",
3016
3016
  // symbolColor: "#b7a1ff"
3017
3017
  }
3018
3018
  } else {
3019
3019
  this.colors = {
3020
- color: "white",
3020
+ color: "#F4F4F4",
3021
+ //color: "white",
3021
3022
  // color: "#F5F4FA",
3022
3023
  symbolColor: "black",
3023
3024
  }
@@ -847,9 +847,11 @@ body {
847
847
  position: relative;
848
848
  }
849
849
  /* Reserve scrollbar space to prevent header layout shift */
850
+ /*
850
851
  html {
851
852
  scrollbar-gutter: stable both-edges;
852
853
  }
854
+ */
853
855
  body.dark {
854
856
  color: var(--dark-color);
855
857
  background: var(--dark-bg);