translation-value-sets/uk/colors_set.php

21 lines
583 B
PHP
Raw 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' => 'Морська хвиля',
);