ConsultancyProject_2_ETL/dashboard/app/Chart.php

13 lines
205 B
PHP
Raw Normal View History

2025-01-13 22:50:03 +01:00
<?php
namespace App;
class Chart
{
public static function colors(int $count = 5){
2025-01-15 16:57:18 +01:00
$colors = ['#9ebcda','#8c96c6','#88419d','#810f7c','#4d004b'];
2025-01-13 22:50:03 +01:00
return json_encode($colors);
}
}