1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// Test repeated gradients.
---
#rect(
height: 40pt,
width: 100%,
fill: gradient.linear(..color.map.inferno).repeat(2, mirror: true)
)
---
#rect(
height: 40pt,
width: 100%,
fill: gradient.linear(..color.map.rainbow).repeat(2, mirror: true),
)
---
#rect(
height: 40pt,
width: 100%,
fill: gradient.linear(..color.map.rainbow).repeat(5, mirror: true)
)
---
#rect(
height: 40pt,
width: 100%,
fill: gradient.linear(..color.map.rainbow).sharp(10).repeat(5, mirror: false)
)
---
#rect(
height: 40pt,
width: 100%,
fill: gradient.linear(..color.map.rainbow).sharp(10).repeat(5, mirror: true)
)
|