translation-value-sets/ru/colors_set.php

21 lines
583 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' => 'Черный',
'green' => 'Зеленый',
'silver' => 'Серебрянный',
'lime' => 'Лайм',
'gray' => 'Серый',
'olive' => 'Оливковый',
'white' => 'Белый',
'yellow' => 'Желтый',
'maroon' => 'Темно-бордовый',
'navy' => 'Темно-синий',
'red' => 'Красный',
'blue' => 'Голубой',
'purple' => 'Пурпурный',
'teal' => 'Бирюзовый',
'fuchsia' => 'Фуксия',
'aqua' => 'Морская волна',
);