@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/{TimeField-DVuYVoDw.d.ts → TimeField-B6DyOZXU.d.ts} +9 -1
- package/dist/{TimeField-DsHO9pLs.d.cts → TimeField-C_Fa7mqf.d.cts} +9 -1
- package/dist/index.cjs +10 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +10 -10
- package/dist/index.js.map +1 -1
- package/dist/prose.css +5 -3
- package/dist/rhf/index.cjs +2 -2
- package/dist/rhf/index.cjs.map +1 -1
- package/dist/rhf/index.d.cts +1 -1
- package/dist/rhf/index.d.ts +1 -1
- package/dist/rhf/index.js +2 -2
- package/dist/rhf/index.js.map +1 -1
- package/dist/styles/theme-light-override.css +2 -0
- package/dist/styles.css +30 -2
- package/package.json +2 -2
- package/scripts/generate-color-utilities.mjs +6 -0
package/dist/prose.css
CHANGED
|
@@ -132,13 +132,15 @@
|
|
|
132
132
|
text-decoration-color: currentcolor;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
/* Inline code —
|
|
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-
|
|
141
|
-
color: var(--color-
|
|
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
|
}
|