# blockenberg/2.0.7/blocks/scientific-calculator/block.json

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

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/scientific-calculator/block.json
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/blocks/scientific-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/scientific-calculator/block.json#L10-L20`.

```json
{
	"$schema": "https://schemas.wp.org/trunk/block.json",
	"apiVersion": 3,
	"name": "blockenberg/scientific-calculator",
	"version": "1.0.0",
	"title": "Scientific Calculator",
	"category": "bkbg-calculators",
	"icon": "dashboard",
	"description": "A fully functional scientific calculator with standard arithmetic, trigonometric, logarithmic, and power functions, memory storage, and history log.",
	"keywords": [
		"calculator",
		"scientific",
		"math",
		"trigonometry",
		"algebra",
		"sine",
		"cosine"
	],
	"textdomain": "blockenberg",
	"editorScript": "bkbg-scientific-calculator-editor",
	"style": "bkbg-scientific-calculator-style",
	"viewScript": "bkbg-scientific-calculator-frontend",
	"attributes": {
		"title": {
			"type": "string",
			"default": "Scientific Calculator"
		},
		"showTitle": {
			"type": "boolean",
			"default": true
		},
		"subtitle": {
			"type": "string",
			"default": "Perform advanced mathematical calculations"
		},
		"showSubtitle": {
			"type": "boolean",
			"default": true
		},
		"angleMode": {
			"type": "string",
			"default": "deg"
		},
		"showHistory": {
			"type": "boolean",
			"default": true
		},
		"historyMax": {
			"type": "number",
			"default": 10
		},
		"showMemory": {
			"type": "boolean",
			"default": true
		},
		"precision": {
			"type": "number",
			"default": 10
		},
		"accentColor": {
			"type": "string",
			"default": "#6c3fb5"
		},
		"cardBg": {
			"type": "string",
			"default": "#1a1a2e"
		},
		"displayBg": {
			"type": "string",
			"default": "#0d0d1a"
		},
		"displayColor": {
			"type": "string",
			"default": "#ffffff"
		},
		"btnNumBg": {
			"type": "string",
			"default": "#2d2d4a"
		},
		"btnNumColor": {
			"type": "string",
			"default": "#ffffff"
		},
		"btnOpBg": {
			"type": "string",
			"default": "#3d2d6a"
		},
		"btnOpColor": {
			"type": "string",
			"default": "#c4b5fd"
		},
		"btnFnBg": {
			"type": "string",
			"default": "#1e2a4a"
		},
		"btnFnColor": {
			"type": "string",
			"default": "#93c5fd"
		},
		"btnEqBg": {
			"type": "string",
			"default": "#6c3fb5"
		},
		"btnEqColor": {
			"type": "string",
			"default": "#ffffff"
		},
		"btnClearBg": {
			"type": "string",
			"default": "#7f1d1d"
		},
		"btnClearColor": {
			"type": "string",
			"default": "#fecaca"
		},
		"historyBg": {
			"type": "string",
			"default": "#111128"
		},
		"historyColor": {
			"type": "string",
			"default": "#9ca3af"
		},
		"memColor": {
			"type": "string",
			"default": "#86efac"
		},
		"titleColor": {
			"type": "string",
			"default": ""
		},
		"subtitleColor": {
			"type": "string",
			"default": ""
		},
		"sectionBg": {
			"type": "string",
			"default": ""
		},
		"titleSize": {
			"type": "number",
			"default": 28
		},
		"displaySize": {
			"type": "number",
			"default": 36
		},
		"btnSize": {
			"type": "number",
			"default": 15
		},
		"cardRadius": {
			"type": "number",
			"default": 20
		},
		"btnRadius": {
			"type": "number",
			"default": 10
		},
		"maxWidth": {
			"type": "number",
			"default": 420
		},
		"paddingTop": {
			"type": "number",
			"default": 60
		},
		"paddingBottom": {
			"type": "number",
			"default": 60
		},
		"titleFontWeight": {
			"type": "number",
			"default": 700
		},
		"titleTypo": {
			"type": "object",
			"default": {}
		},
		"subtitleTypo": {
			"type": "object",
			"default": {}
		}
	},
	"supports": {
		"html": false,
		"anchor": true,
		"className": true,
		"align": [
			"wide",
			"full"
		]
	}
}
```
