Skip to main content
Indigo Donut
DarkDoughnutSlack

Indigo Donut

Deep indigo doughnut with vivid complementary slices. Designed for Slack and notification contexts.

Open in Studio

Theme tokens

Background
#1e1b4b
Font
Inter / 12px
Mode
dark

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": 480,
  "height": 380,
  "format": "png",
  "data": {
    "labels": [
      "Critical",
      "High",
      "Medium",
      "Low"
    ],
    "datasets": [
      {
        "data": [
          8,
          21,
          43,
          28
        ],
        "backgroundColor": [
          "#fb7185",
          "#f97316",
          "#a78bfa",
          "#818cf8"
        ],
        "borderWidth": 0,
        "hoverOffset": 5
      }
    ]
  },
  "options": {
    "color": "#c7d2fe",
    "plugins": {
      "legend": {
        "position": "right",
        "labels": {
          "color": "#c7d2fe",
          "usePointStyle": true,
          "padding": 12
        }
      },
      "title": {
        "display": true,
        "text": "Open Issues by Severity",
        "color": "#e0e7ff",
        "font": {
          "size": 13,
          "weight": "bold"
        }
      }
    },
    "cutout": "65%"
  },
  "theme": {
    "palette": [
      "#818cf8",
      "#a78bfa",
      "#c084fc",
      "#e879f9",
      "#fb7185",
      "#f472b6"
    ],
    "backgroundColor": "#1e1b4b",
    "fontFamily": "Inter",
    "fontSize": 12,
    "gridColor": "rgba(148, 163, 184, 0.18)",
    "mode": "dark"
  }
}

More Doughnut templates