Commit 881df1eb by mercymodest

feat: update meal category colors for better visual distinction

parent 8b545eac
-- 红色系更新
-- 红色系更新
......@@ -46,3 +46,36 @@ UPDATE t_meal_category SET category_color = 'E264FF', update_time = CURRENT_TIME
# SET category_color='#FF6C7B'
# WHERE category_name = 'Snack'
# AND category_color = '#E898B4';
# Breakfast #ED7A47 --> #E54714
UPDATE
t_meal_category
SET
category_color = '#E54714'
WHERE
category_color = '#ED7A47';
## Lunch #A8D4D2 --> #17C096
UPDATE
t_meal_category
SET
category_color = '#17C096'
WHERE
category_color = '#A8D4D2';
## Dinner #A27AE2 --> #E264FF
UPDATE
t_meal_category
SET
category_color = '#E264FF'
WHERE
category_color = '#A27AE2';
## Snack #E898B4 --> #FF6C7B
UPDATE
t_meal_category
SET
category_color = '#FF6C7B'
WHERE
category_color = '#E898B4';
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment