@feliperohdee/satori 0.0.13 → 0.0.14
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/README.md +1 -0
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/standalone.cjs +4 -4
- package/dist/standalone.cjs.map +1 -1
- package/dist/standalone.js +4 -4
- package/dist/standalone.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@ This fork extends the [original Satori](https://github.com/vercel/satori) with t
|
|
|
7
7
|
- **`background-position` with keyword sizes** — correct positioning when combined with `background-size: cover`, `contain`, or `auto`
|
|
8
8
|
- **`mix-blend-mode`** — full support
|
|
9
9
|
- **`backdrop-filter`** — simulated via SVG filter primitives (`blur`, `saturate`, `brightness`, `contrast`, `grayscale`). Uses `<use>` to reference background content with `feGaussianBlur` and `feOffset` edge-extension for consistent blur without transparent edges. Supports `mask-image` for blurred fades and `border-radius` on the clip path
|
|
10
|
+
- **Faux bold (synthetic bold)** — when only a regular weight font (e.g., 400) is loaded and bold text is requested (e.g., `fontWeight: 700`), glyphs are automatically thickened using an SVG stroke matching the fill color, replicating browser font synthesis. Stroke width scales with the weight difference. Explicit `-webkit-text-stroke` takes precedence
|
|
10
11
|
|
|
11
12
|
## Overview
|
|
12
13
|
|