mirror of
https://github.com/typst/typst
synced 2025-05-15 09:35:28 +08:00
10 lines
188 B
Typst
10 lines
188 B
Typst
// Test the `stack` function.
|
|
|
|
---
|
|
#let rect(width, color) = rect(width: width, height: 1cm, fill: color)
|
|
#stack(
|
|
rect(2cm, #2a631a),
|
|
rect(3cm, #43a127),
|
|
rect(1cm, #9feb52),
|
|
)
|