How to write some texts with different color in image using Jimp

I want to write one text with red color, one text with green color and one text with blue color in exist image. How to do it ?

type here
const font32White = await Jimp.loadFont(Jimp.FONT_SANS_32_WHITE)
image.print(font64White, 30, 10, '123')
image.print(font64White, 30, 20, '456')
image.print(font64White, 30, 30, '789')

I am trying to do it but only use black and white text. Can someone help me pls?