md-lv 1.1.0 → 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.0",
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,12 +172,12 @@ 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
 
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,8 @@
16
16
  --color-border: #e1e4e8;
17
17
  --color-border-strong: #c6cbd1;
18
18
  --color-code-bg: #f6f8fa;
19
+ --color-table-row: #f8f9fb;
20
+ --color-table-row-alt: #eef1f4;
19
21
  --color-blockquote-border: #dfe2e5;
20
22
  --color-success: #28a745;
21
23
  --color-warning: #ffc107;
@@ -40,6 +42,8 @@
40
42
  --color-border: #30363d;
41
43
  --color-border-strong: #484f58;
42
44
  --color-code-bg: #161b22;
45
+ --color-table-row: #13171d;
46
+ --color-table-row-alt: #1c2128;
43
47
  --color-blockquote-border: #3b434b;
44
48
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
45
49
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
@@ -205,12 +209,12 @@ table th {
205
209
  }
206
210
 
207
211
  table tr {
208
- background-color: var(--color-bg);
212
+ background-color: var(--color-table-row);
209
213
  border-top: 1px solid var(--color-border);
210
214
  }
211
215
 
212
216
  table tr:nth-child(2n) {
213
- background-color: var(--color-bg-secondary);
217
+ background-color: var(--color-table-row-alt);
214
218
  color: var(--color-text);
215
219
  }
216
220