md-lv 1.1.1 → 1.1.2

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.1",
3
+ "version": "1.1.2",
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": {
@@ -172,7 +172,7 @@ table th {
172
172
  }
173
173
 
174
174
  table tr {
175
- background-color: #ffffff;
175
+ background-color: #f8f9fb;
176
176
  border-top: 1px solid #c6cbd1;
177
177
  }
178
178
 
@@ -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: #f8f9fb;
19
20
  --color-table-row-alt: #eef1f4;
20
21
  --color-blockquote-border: #dfe2e5;
21
22
  --color-success: #28a745;
@@ -41,6 +42,7 @@
41
42
  --color-border: #30363d;
42
43
  --color-border-strong: #484f58;
43
44
  --color-code-bg: #161b22;
45
+ --color-table-row: #13171d;
44
46
  --color-table-row-alt: #1c2128;
45
47
  --color-blockquote-border: #3b434b;
46
48
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
@@ -207,7 +209,7 @@ table th {
207
209
  }
208
210
 
209
211
  table tr {
210
- background-color: var(--color-bg);
212
+ background-color: var(--color-table-row);
211
213
  border-top: 1px solid var(--color-border);
212
214
  }
213
215