Skip to content

1433 - Theme Config

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

maml
{
  name: "subdued Theme"
  # Color palette
  colors: {
    primary: "#dfdef6"
    secondary: "#7fcb7a"
    accent: "#fcbea7"
    background: "#f8f9fa"
    text: "#1a1a1a"

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

  # Typography
  typography: {
    font_family: "Inter, sans-serif"
    base_size: 14
    line_height: 1.6
    headings: {
      font_family: "\"Space Grotesk\", sans-serif"
      weight: 700
    }
  }

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

See Also