message widget
The message widget displays static text. It’s the most-used widget — most LED signs are 80% messages with a sprinkling of data widgets.

Minimal example
[[playlist.section.widget]]type = "message"text = "Hello, world!"Options
Section titled “Options”Set the content string with text =.
Common patterns
Section titled “Common patterns”Static text with brand color
Section titled “Static text with brand color”
[[playlist.section.widget]]type = "message"text = "Breathe. Move. Rise."font_color = [255, 92, 38] # brand flameInline emoji
Section titled “Inline emoji”
[[playlist.section.widget]]type = "message"text = ":taco: Taco Tuesday!"Hi-res font on the bigsign — Inter-Bold at 28px reads well at medium viewing distance
Section titled “Hi-res font on the bigsign — Inter-Bold at 28px reads well at medium viewing distance”
[[playlist.section.widget]]type = "message"text = "GRAND OPENING"font = "Inter-Bold"font_size = 28font_color = [225, 48, 108]Typewriter effect with rainbow text
Section titled “Typewriter effect with rainbow text”
[[playlist.section.widget]]type = "message"text = "Now Enrolling"font_color = "rainbow"animation = "typewriter"Gradient between two brand colors — each character lands at its own interpolated hue
Section titled “Gradient between two brand colors — each character lands at its own interpolated hue”
[[playlist.section.widget]]type = "message"text = "firebird"font_color = {style = "gradient", from = [255, 92, 38], to = [255, 183, 3]}High-contrast caution color — black text on a yellow background
Section titled “High-contrast caution color — black text on a yellow background”
[[playlist.section.widget]]type = "message"text = "CAUTION"font_color = [0, 0, 0]bg_color = [255, 220, 0]Typewriter is single-row only on gif and image
Section titled “Typewriter is single-row only on gif and image”animation = "typewriter" works on message without restriction. On gif and image, three combinations are rejected: bottom_text set, text_align = "scroll" / "scroll_over", or empty text. Typewriter still composes with font_color = "rainbow" and border = "rainbow".