translation-value-sets/it/colors_set.php

21 lines
437 B
PHP
Raw Permalink Normal View History

2022-12-14 15:10:35 +01:00
<?PHP
2023-01-23 22:37:48 +01:00
declare(strict_types = 1);
2023-01-23 22:41:01 +01:00
$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',
);