How to design a yellow sticker in Typst?

Is it possible to design a yellow sticker like the one listed below? Thank you

Yes it is. But you would need a handwritten font and a 3D transformation of an image.

The closest I know is

#import "@preview/colorful-boxes:1.4.3": stickybox
#set text(font: "Sweet Aromatic")

#let yellow-sticker(size: 5cm, rotate: 5deg, body) = {
  let body = {
    set align(center + horizon)
    show: block.with(height: size)
    show: move.with(dx: -0.2em, dy: -1.5em)
    set text(5em)
    body
  }
  let colors = (yellow.darken(20%), yellow, yellow.lighten(50%))
  stickybox(
    width: size,
    rotation: rotate,
    fill: gradient.linear(angle: 45deg, ..colors),
    tape: false,
    body,
  )
}

#yellow-sticker[Live!]

https://dl.dafont.com/dl/?f=sweet_aromatic

6 Likes

Thank you Andrew for your support.

1 Like