Skip to main content
FLO.W 思流Notion Formulas
Back to function index

style

A quick reference for the Notion style function, including syntax, purpose, return value, and examples.

Quick reference

ItemDetails
Functionstyle()
CategoryText
Syntaxstyle(text, ...styles)
PurposeAdd text styles
Return valueText

Official example of the style function in the Notion formula editor

Examples and notes

Common style arguments:

  • "b": bold
  • "i": italic
  • "u": underline
  • "s": strikethrough
  • "c": code style
  • "red", "blue", "green", "yellow", "orange", "purple", "pink", "brown", "gray"
  • background colors such as "red_background" and "yellow_background"
style("Important", "b", "red")
ifs(  prop("Status") == "Completed", style("Completed", "b", "green"),  prop("Status") == "In Progress", style("In Progress", "b", "blue"),  style("Not started", "gray"))

To use these formulas directly in task reminders, project progress, note heatmaps, and reports, continue with FLO.W Notion Template.

Back to function index

Last updated on