21 lines
560 B
PHP
21 lines
560 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$colors_set = array (
|
|
'black' => 'काला',
|
|
'green' => 'हरा',
|
|
'silver' => 'चाँदी',
|
|
'lime' => 'नींबू',
|
|
'gray' => 'स्लेटी',
|
|
'olive' => 'जैतून',
|
|
'white' => 'सफ़ेद',
|
|
'yellow' => 'पीला',
|
|
'maroon' => 'लाल रंग',
|
|
'navy' => 'नौसेना',
|
|
'red' => 'लाल',
|
|
'blue' => 'नीला',
|
|
'purple' => 'बैंगनी',
|
|
'teal' => 'टील',
|
|
'fuchsia' => 'फ्यूशिया',
|
|
'aqua' => 'पानी',
|
|
);
|