Change wish priorities color

This commit is contained in:
Jay Trees 2022-04-01 09:03:52 +02:00
parent f089e14873
commit 2a985321fc

View file

@ -18,21 +18,17 @@ class Wish
public static function initialize()
{
self::$priorities = array(
'' => array(
'name' => __('Default'),
'color' => '',
),
'1' => array(
'name' => __('Unsure about it'),
'color' => 'black',
'color' => 'teal',
),
'2' => array(
'name' => __('Nice to have'),
'color' => 'grey',
'color' => 'olive',
),
'3' => array(
'name' => __('Would love it'),
'color' => 'brown',
'color' => 'yellow',
),
);
}