cms-renderer 0.6.8 → 0.6.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.
@@ -4,7 +4,7 @@
4
4
  overflow-x: hidden;
5
5
  overflow-wrap: anywhere;
6
6
  word-break: break-word;
7
- color: #d1d5db;
7
+ color: var(--text);
8
8
  font-size: 15px;
9
9
  line-height: 1.75;
10
10
  }
@@ -13,7 +13,7 @@
13
13
  .cms-docs-markdown h2,
14
14
  .cms-docs-markdown h3,
15
15
  .cms-docs-markdown h4 {
16
- color: #ffffff;
16
+ color: var(--text);
17
17
  font-weight: 600;
18
18
  }
19
19
 
@@ -57,13 +57,13 @@
57
57
  }
58
58
 
59
59
  .cms-docs-markdown a {
60
- color: #93c5fd;
60
+ color: var(--accent);
61
61
  text-decoration: underline;
62
62
  text-underline-offset: 4px;
63
63
  }
64
64
 
65
65
  .cms-docs-markdown strong {
66
- color: #ffffff;
66
+ color: var(--text);
67
67
  font-weight: 600;
68
68
  }
69
69
 
@@ -90,26 +90,26 @@
90
90
  }
91
91
 
92
92
  .cms-docs-markdown blockquote {
93
- border-left: 2px solid #374151;
93
+ border-left: 2px solid var(--border-strong);
94
94
  padding-left: 1rem;
95
- color: #9ca3af;
95
+ color: var(--text-muted);
96
96
  font-style: italic;
97
97
  }
98
98
 
99
99
  .cms-docs-markdown :not(pre) > code {
100
100
  border-radius: 0.25rem;
101
- background: #1f2937;
101
+ background: var(--code-bg);
102
102
  padding: 0.125rem 0.375rem;
103
- color: #f9fafb;
103
+ color: var(--code-fg);
104
104
  font-size: 0.9em;
105
105
  }
106
106
 
107
107
  .cms-docs-markdown pre,
108
108
  .cms-docs-markdown .shiki {
109
109
  overflow-x: auto;
110
- border: 1px solid #1f2937;
110
+ border: 1px solid var(--code-border);
111
111
  border-radius: 0.75rem;
112
- background: #0b0f19;
112
+ background: var(--surface-muted);
113
113
  padding: 1rem;
114
114
  }
115
115
 
@@ -117,13 +117,13 @@
117
117
  .cms-docs-markdown .shiki code {
118
118
  background: transparent;
119
119
  padding: 0;
120
- color: #e5e7eb;
120
+ color: var(--text);
121
121
  }
122
122
 
123
123
  .cms-docs-markdown hr {
124
124
  margin: 2rem 0;
125
125
  border: 0;
126
- border-top: 1px solid #1f2937;
126
+ border-top: 1px solid var(--border);
127
127
  }
128
128
 
129
129
  .cms-docs-markdown table {
@@ -135,13 +135,13 @@
135
135
 
136
136
  .cms-docs-markdown th,
137
137
  .cms-docs-markdown td {
138
- border: 1px solid #374151;
138
+ border: 1px solid var(--border-strong);
139
139
  padding: 0.5rem 0.75rem;
140
140
  }
141
141
 
142
142
  .cms-docs-markdown th {
143
- background: #111827;
144
- color: #ffffff;
143
+ background: var(--table-header);
144
+ color: var(--text);
145
145
  text-align: left;
146
146
  }
147
147