@texturehq/edges 5.1.6 → 5.3.0

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/prose.css CHANGED
@@ -132,13 +132,15 @@
132
132
  text-decoration-color: currentcolor;
133
133
  }
134
134
 
135
- /* Inline code — warm-tinted pill (the Slack/GitHub/Notion convention). */
135
+ /* Inline code — tinted pill (the Slack/GitHub/Notion convention), on the
136
+ shared `--color-code-*` tokens. Was rose-pastel/rose-base, which read as
137
+ the right convention but only reached 3.56:1. */
136
138
  .prose :where(code):not(pre code) {
137
139
  font: var(--text-code);
138
140
  letter-spacing: var(--text-code-letter-spacing);
139
141
  font-size: 0.875em;
140
- background: var(--color-rose-pastel);
141
- color: var(--color-rose-base);
142
+ background: var(--color-code-background);
143
+ color: var(--color-code-text);
142
144
  padding: 0 5px;
143
145
  border-radius: var(--radius-sm);
144
146
  }