Skip to main content
Clean Donut
LightDoughnutEmail

Clean Donut

Light-background doughnut with a pastel palette. The safe choice for embedded email charts.

Open in Studio

Theme tokens

Background
#ffffff
Font
Inter / 12px
Mode
light

API snippet

POST this to /api/v1/render to render this template programmatically.

POST /api/v1/render
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY

{
  "type": "doughnut",
  "width": 560,
  "height": 360,
  "format": "png",
  "data": {
    "labels": [
      "Free",
      "Pro",
      "Team",
      "Enterprise"
    ],
    "datasets": [
      {
        "data": [
          48,
          31,
          14,
          7
        ],
        "backgroundColor": [
          "#bfdbfe",
          "#93c5fd",
          "#3b82f6",
          "#1d4ed8"
        ],
        "borderWidth": 2,
        "borderColor": "#ffffff",
        "hoverOffset": 5
      }
    ]
  },
  "options": {
    "color": "#334155",
    "plugins": {
      "legend": {
        "position": "right",
        "labels": {
          "color": "#334155",
          "usePointStyle": true,
          "padding": 12
        }
      },
      "title": {
        "display": true,
        "text": "Plan Distribution",
        "color": "#0f172a",
        "font": {
          "size": 13,
          "weight": "bold"
        }
      }
    },
    "cutout": "60%"
  },
  "theme": {
    "palette": [
      "#3b82f6",
      "#6366f1",
      "#8b5cf6",
      "#06b6d4",
      "#10b981",
      "#f59e0b"
    ],
    "backgroundColor": "#ffffff",
    "fontFamily": "Inter",
    "fontSize": 12,
    "gridColor": "rgba(30, 41, 59, 0.14)",
    "mode": "light"
  }
}

More Doughnut templates