Skip to content

1139 - Theme Config

Design system theme configuration. This is an example of a MAML document.

maml
{
  name: "firm Theme"
  # Color palette
  colors: {
    primary: "#617b5e"
    secondary: "#62c9d1"
    accent: "#cc3f8f"
    background: "#ffffff"
    text: "#333333"

    error: "#dc3545"
    warning: "#ffc107"
    success: "#28a745"
  }

  # Typography
  typography: {
    font_family: "system-ui, sans-serif"
    base_size: 14
    line_height: 1.75
    headings: {
      font_family: "\"Playfair Display\", serif"
      weight: 600
    }
  }

  spacing: {
    unit: 8
    scale: [
      0
      4
      8
      16
      24
      32
      48
    ]
  }
  border_radius: 4
}

See Also