# m-chart/1.12/components/chartjs-themes/_default.php

M Chart, version 1.12. 50 lines.

- Page: https://pluginprobe.com/plugins/m-chart/1.12/code/components/chartjs-themes/_default.php
- Raw: https://pluginprobe.com/plugins/m-chart/1.12/raw/components/chartjs-themes/_default.php
- Modified: 2023-03-18T18:42:10+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/m-chart/1.12/code/components/chartjs-themes/_default.php#L10-L20`.

```php
<?php

/**
 * Theme Name: Chart.js
 */

return array(
	'colors' => array(
		'#56a0e5', // Blue
		'#ed6d85', // Pink
		'#6cbdbf', // Turquoise
		'#f1a354', // Orange
		'#9169f6', // Purple
		'#f7cf6b', // Yellow
		'#c9cbce', // Gray
	),
	'points' => array(
		array(
			'point' => array(
				// Circle
				'pointStyle' => 'circle',
			),
		),
		array(
			'point' => array(
				// Diamond
				'pointStyle' => 'rectRot',
			),
		),
		array(
			'point' => array(
				// Square
				'pointStyle' => 'rect',
			),
		),
		array(
			'point' => array(
				// Up Triangle
				'pointStyle' => 'triangle',
			),
		),
		array(
			'point' => array(
				// Down Triangle
				'pointStyle' => 'triangle',
				'rotation'   => 180,
			),
		),
	),
);
```
