20 lines
622 B
PHP
20 lines
622 B
PHP
<?php
|
|
|
|
return [
|
|
'calendar' => [
|
|
// used by the color picker and as the default pool for calendars
|
|
'color_palette' => [
|
|
'#2563eb', '#7c3aed', '#db2777', '#ef4444', '#f97316',
|
|
'#f59e0b', '#84cc16', '#22c55e', '#14b8a6', '#06b6d4',
|
|
'#0ea5e9', '#64748b', '#d051cc', '#ffec05', '#739399',
|
|
],
|
|
|
|
// absolute failsafe if everything else is missing or invalid
|
|
'color_failsafe' => '#1a1a1a',
|
|
|
|
// how default_calendar_color() chooses from the palette
|
|
// options: 'first' | 'random'
|
|
'default_color_strategy' => 'random',
|
|
],
|
|
];
|