md-lv 1.1.0 → 1.1.1

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": "md-lv",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Serve Markdown files as HTML with live features - syntax highlighting, Mermaid diagrams, and MathJax formulas",
5
5
  "type": "module",
6
6
  "engines": {
@@ -177,7 +177,7 @@ table tr {
177
177
  }
178
178
 
179
179
  table tr:nth-child(2n) {
180
- background-color: #f6f8fa;
180
+ background-color: #eef1f4;
181
181
  }
182
182
 
183
183
  /* Horizontal Rule */
@@ -16,6 +16,7 @@
16
16
  --color-border: #e1e4e8;
17
17
  --color-border-strong: #c6cbd1;
18
18
  --color-code-bg: #f6f8fa;
19
+ --color-table-row-alt: #eef1f4;
19
20
  --color-blockquote-border: #dfe2e5;
20
21
  --color-success: #28a745;
21
22
  --color-warning: #ffc107;
@@ -40,6 +41,7 @@
40
41
  --color-border: #30363d;
41
42
  --color-border-strong: #484f58;
42
43
  --color-code-bg: #161b22;
44
+ --color-table-row-alt: #1c2128;
43
45
  --color-blockquote-border: #3b434b;
44
46
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
45
47
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
@@ -210,7 +212,7 @@ table tr {
210
212
  }
211
213
 
212
214
  table tr:nth-child(2n) {
213
- background-color: var(--color-bg-secondary);
215
+ background-color: var(--color-table-row-alt);
214
216
  color: var(--color-text);
215
217
  }
216
218