21 lines
437 B
PHP
21 lines
437 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$colors_set = array (
|
|
'black' => 'nero',
|
|
'green' => 'verde',
|
|
'silver' => 'argento',
|
|
'lime' => 'verde chiaro',
|
|
'gray' => 'grigo',
|
|
'olive' => 'olive',
|
|
'white' => 'bianco',
|
|
'yellow' => 'giallo',
|
|
'maroon' => 'marrone',
|
|
'navy' => 'blu scuro',
|
|
'red' => 'rosso',
|
|
'blue' => 'blu',
|
|
'purple' => 'lilla',
|
|
'teal' => ' verd(e)azzurro ',
|
|
'fuchsia' => 'fucsia',
|
|
'aqua' => 'turchese',
|
|
);
|