# blockenberg/2.0.7/blocks/split-bill-calculator/block.json

Blockenberg — 600+ Advanced Gutenberg Blocks &amp; AI Agent for WordPress Block Editor, version 2.0.7. 170 lines.

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/split-bill-calculator/block.json
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/blocks/split-bill-calculator/block.json
- Modified: 2026-03-06T12:32:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/split-bill-calculator/block.json#L10-L20`.

```json
{
	"apiVersion": 3,
	"name": "blockenberg/split-bill-calculator",
	"title": "Split Bill Calculator",
	"description": "Calculate how much each person owes when splitting a bill with tip among a group.",
	"category": "bkbg-calculators",
	"icon": "groups",
	"keywords": [
		"split",
		"bill",
		"tip",
		"group",
		"calculator",
		"dutch",
		"share"
	],
	"textdomain": "blockenberg",
	"editorScript": "bkbg-split-bill-calculator-editor",
	"style": "bkbg-split-bill-calculator-style",
	"viewScript": "bkbg-split-bill-calculator-frontend",
	"attributes": {
		"title": {
			"type": "string",
			"default": "Split Bill Calculator"
		},
		"subtitle": {
			"type": "string",
			"default": "Quickly calculate how much everyone owes."
		},
		"showTitle": {
			"type": "boolean",
			"default": true
		},
		"showSubtitle": {
			"type": "boolean",
			"default": true
		},
		"currencySymbol": {
			"type": "string",
			"default": "$"
		},
		"defaultBill": {
			"type": "number",
			"default": 100
		},
		"defaultTip": {
			"type": "number",
			"default": 15
		},
		"defaultPeople": {
			"type": "number",
			"default": 4
		},
		"showTipPresets": {
			"type": "boolean",
			"default": true
		},
		"tipPresets": {
			"type": "string",
			"default": "10,15,20,25"
		},
		"showBreakdown": {
			"type": "boolean",
			"default": true
		},
		"roundUp": {
			"type": "boolean",
			"default": false
		},
		"accentColor": {
			"type": "string",
			"default": "#6c3fb5"
		},
		"cardBg": {
			"type": "string",
			"default": "#ffffff"
		},
		"resultBg": {
			"type": "string",
			"default": "#6c3fb5"
		},
		"resultColor": {
			"type": "string",
			"default": "#ffffff"
		},
		"presetBg": {
			"type": "string",
			"default": "#f3f4f6"
		},
		"presetColor": {
			"type": "string",
			"default": "#374151"
		},
		"presetActiveBg": {
			"type": "string",
			"default": "#6c3fb5"
		},
		"presetActiveColor": {
			"type": "string",
			"default": "#ffffff"
		},
		"breakdownBg": {
			"type": "string",
			"default": "#f5f3ff"
		},
		"breakdownBorder": {
			"type": "string",
			"default": "#ede9fe"
		},
		"labelColor": {
			"type": "string",
			"default": "#374151"
		},
		"inputBorder": {
			"type": "string",
			"default": "#e5e7eb"
		},
		"titleColor": {
			"type": "string",
			"default": "#1f2937"
		},
		"subtitleColor": {
			"type": "string",
			"default": "#6b7280"
		},
		"sectionBg": {
			"type": "string",
			"default": ""
		},
		"titleTypo": {
			"type": "object",
			"default": {}
		},
		"subtitleTypo": {
			"type": "object",
			"default": {}
		},
		"resultTypo": {
			"type": "object",
			"default": {}
		},
		"cardRadius": {
			"type": "number",
			"default": 16
		},
		"inputRadius": {
			"type": "number",
			"default": 8
		},
		"maxWidth": {
			"type": "number",
			"default": 500
		},
		"paddingTop": {
			"type": "number",
			"default": 60
		},
		"paddingBottom": {
			"type": "number",
			"default": 60
		}
	},
	"supports": {
		"html": false,
		"align": [
			"wide",
			"full"
		]
	}
}
```
