czon 0.7.8 → 0.7.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/dist/ssg/style.js CHANGED
@@ -18,6 +18,7 @@ exports.style = `
18
18
  --shadow-color: rgba(0, 0, 0, 0.1);
19
19
  --primary-color: #007bff;
20
20
  --text-on-primary: #ffffff;
21
+ --text-strong: #ff5722;
21
22
  }
22
23
 
23
24
  html.dark {
@@ -34,6 +35,7 @@ html.dark {
34
35
  --shadow-color: rgba(0, 0, 0, 0.5);
35
36
  --primary-color: #3b82f6;
36
37
  --text-on-primary: #ffffff;
38
+ --text-strong: #ff8a65;
37
39
  }
38
40
 
39
41
  html, body {
@@ -204,6 +206,10 @@ html:not(.dark) body {
204
206
  margin: 0.5rem 0;
205
207
  }
206
208
 
209
+ .content-body strong {
210
+ color: var(--text-strong);
211
+ }
212
+
207
213
  .content-body blockquote {
208
214
  border-left: 4px solid var(--link-color);
209
215
  padding: 0.5rem 1rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "czon",
3
- "version": "0.7.8",
3
+ "version": "0.7.9",
4
4
  "description": "CZON - AI enhanced Markdown content engine",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",