DarkBarDashboard
Midnight Bar
Deep dark bar chart with an indigo-violet palette. Built for dashboards that need to command attention.
Open in StudioTheme tokens
- Background
- #0f172a
- 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": "bar",
"width": 800,
"height": 400,
"format": "png",
"data": {
"labels": [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug"
],
"datasets": [
{
"label": "New Signups",
"data": [
312,
428,
519,
601,
724,
891,
1043,
1187
],
"backgroundColor": "#818cf8",
"borderRadius": 6,
"borderSkipped": false
}
]
},
"options": {
"backgroundColor": "#0f172a",
"color": "#94a3b8",
"plugins": {
"legend": {
"display": false
},
"title": {
"display": true,
"text": "Monthly Signups",
"color": "#e2e8f0",
"font": {
"size": 14,
"weight": "bold"
}
}
},
"scales": {
"x": {
"grid": {
"display": false
},
"border": {
"display": false
},
"ticks": {
"color": "#64748b"
}
},
"y": {
"grid": {
"color": "rgba(148, 163, 184, 0.18)"
},
"border": {
"display": false
},
"ticks": {
"color": "#64748b"
}
}
}
},
"theme": {
"palette": [
"#818cf8",
"#a78bfa",
"#c084fc",
"#e879f9",
"#fb7185",
"#f472b6"
],
"backgroundColor": "#0f172a",
"fontFamily": "Inter",
"fontSize": 12,
"gridColor": "rgba(148, 163, 184, 0.18)",
"mode": "dark"
}
}