mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
10 lines
187 B
Typst
10 lines
187 B
Typst
// Test the `stack` function.
|
|
|
|
---
|
|
#let rect(width, color) = rect(width: width, height: 1cm, fill: color)
|
|
#stack(
|
|
rect(2cm, #2a631a),
|
|
rect(3cm, forest),
|
|
rect(1cm, conifer),
|
|
)
|