typst/tests/typ/visualize/gradient-stroke.typ
2023-10-03 19:31:02 +02:00

13 lines
478 B
Typst

// Test gradients on strokes.
---
#set page(width: 100pt, height: 100pt)
#align(center + horizon, square(size: 50pt, fill: black, stroke: 5pt + gradient.linear(red, blue)))
---
// Test gradient on lines
#set page(width: 100pt, height: 100pt)
#line(length: 100%, stroke: 1pt + gradient.linear(red, blue))
#line(length: 100%, angle: 10deg, stroke: 1pt + gradient.linear(red, blue))
#line(length: 100%, angle: 10deg, stroke: 1pt + gradient.linear(red, blue, relative: "parent"))