Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.omni.co/llms.txt

Use this file to discover all available pages before exploring further.

This allows you to maintain consistent coloring for the measure across visualizations.
You can also model colors for dimensions!

Syntax

<measure_name>:
  colors:
    series: <color>

Properties

measure_name
object[]
The name of the measure.

Examples

Named color
first_order_date:
  colors:
    series: green
RGB color
first_order_date:
  colors:
    series: rgb(0, 0, 255)
RGBA with opacity
first_order_date:
  colors:
    series: rgba(0, 0, 255, 0.3)
HSL color
first_order_date:
  colors:
    series: hsl(120, 100%, 50%)
Hex color (must be quoted)
first_order_date:
  colors:
    series: "#000000"