33 lines
896 B
PHP
33 lines
896 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Font Options
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may specify font family and font color.
|
|
|
|
|
*/
|
|
|
|
'font_family' => 'Open Sans, Arial, sans-serif',
|
|
|
|
'font_color' => '#373d3f',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default Colors for datasets
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may specify which hexadecimal colors below you wish
|
|
| to use as your default colors palette in that order.
|
|
|
|
|
*/
|
|
|
|
'colors' => [
|
|
'#008FFB', '#00E396', '#feb019', '#ff455f', '#775dd0', '#80effe',
|
|
'#0077B5', '#ff6384', '#c9cbcf', '#0057ff', '#00a9f4', '#2ccdc9', '#5e72e4'
|
|
]
|
|
];
|