blob: 04b84cb6c8781ca304aeb208e69b1404cae6846e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Test text gradients with radial and conic gradients.
---
#set page(width: 200pt, height: auto, margin: 10pt)
#set par(justify: true)
#set text(fill: gradient.radial(red, blue))
#lorem(30)
---
#set page(width: 200pt, height: auto, margin: 10pt)
#set par(justify: true)
#set text(fill: gradient.conic(red, blue, angle: 45deg))
#lorem(30)
|