@noya-app/noya-designsystem 0.1.16 → 0.1.17
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/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +8 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/theme/dark.ts +2 -1
- package/src/theme/light.ts +2 -1
package/dist/index.mjs
CHANGED
|
@@ -574,7 +574,8 @@ var colors = {
|
|
|
574
574
|
grid: "rgba(0,0,0,0.05)"
|
|
575
575
|
},
|
|
576
576
|
sidebar: {
|
|
577
|
-
background: "
|
|
577
|
+
background: "rgb(252,252,252)",
|
|
578
|
+
backgroundTransparent: "rgba(252,252,252,0.85)"
|
|
578
579
|
},
|
|
579
580
|
popover: {
|
|
580
581
|
background: "rgb(252,252,252)",
|
|
@@ -6141,7 +6142,8 @@ var colors2 = produce(colors, (colors3) => {
|
|
|
6141
6142
|
colors3.canvas.background = "rgb(20,19,23)";
|
|
6142
6143
|
colors3.canvas.sliceOutline = "rgb(150,150,150)";
|
|
6143
6144
|
colors3.canvas.grid = "rgba(0,0,0,0.1)";
|
|
6144
|
-
colors3.sidebar.background = "
|
|
6145
|
+
colors3.sidebar.background = "rgb(34,33,39)";
|
|
6146
|
+
colors3.sidebar.backgroundTransparent = "rgba(34,33,39,0.95)";
|
|
6145
6147
|
colors3.popover.background = "rgba(34,33,39,1)";
|
|
6146
6148
|
colors3.popover.divider = colors3.divider;
|
|
6147
6149
|
colors3.listView.raisedBackground = "rgba(181,178,255,0.1)";
|