@aigne/doc-smith 0.8.8 → 0.8.9
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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/utils/constants.mjs +9 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.8.9](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.8.8...v0.8.9) (2025-09-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* update d2 diagram theme color ([#108](https://github.com/AIGNE-io/aigne-doc-smith/issues/108)) ([d31dd80](https://github.com/AIGNE-io/aigne-doc-smith/commit/d31dd80c7cb1ca0c4d99d85eb2b6a529651d426f))
|
|
9
|
+
|
|
3
10
|
## [0.8.8](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.8.7...v0.8.8) (2025-09-13)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
package/utils/constants.mjs
CHANGED
|
@@ -517,18 +517,17 @@ export const D2_CONFIG = `vars: {
|
|
|
517
517
|
layout-engine: elk
|
|
518
518
|
theme-id: 105
|
|
519
519
|
theme-overrides: {
|
|
520
|
-
N1: "#
|
|
521
|
-
N2: "#
|
|
520
|
+
N1: "#161B1A"
|
|
521
|
+
N2: "#02A996"
|
|
522
522
|
N4: "#E6E8EC"
|
|
523
|
-
N5: "#
|
|
524
|
-
|
|
525
|
-
B3: "#
|
|
523
|
+
N5: "#E3FDF6"
|
|
524
|
+
B2: "#161B1A"
|
|
525
|
+
B3: "#BEF4EB"
|
|
526
526
|
B4: "transparent"
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
AA4: "#
|
|
530
|
-
|
|
531
|
-
AB4: "#FBF4E4"
|
|
527
|
+
B5: "#D1F6EC"
|
|
528
|
+
B6: "#E4FFF0"
|
|
529
|
+
AA4: "#D1F6EC"
|
|
530
|
+
AB4: "#BEF4EB"
|
|
532
531
|
}
|
|
533
532
|
}
|
|
534
533
|
}`;
|