From ccc865741cd7073a236e293c1c2f63a5d5f1c3bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Fri, 13 Mar 2026 16:22:45 +0400 Subject: [PATCH] Change default list colors --- src/places.ts | 4 ++-- test/places.test.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/places.ts b/src/places.ts index e7ef52b..f4704b5 100644 --- a/src/places.ts +++ b/src/places.ts @@ -312,8 +312,8 @@ const Places = function ( async initDefaults(): Promise { const defaults = [ - { id: 'to-go', title: 'Want to go', color: '#ff00ff' }, // Magenta - { id: 'to-do', title: 'To do', color: '#008000' }, // Green + { id: 'to-go', title: 'Want to go', color: '#2e9e4f' }, // Green + { id: 'to-do', title: 'To do', color: '#2a7fff' }, // Blue ]; for (const def of defaults) { diff --git a/test/places.test.ts b/test/places.test.ts index 9c06eb1..7acaee0 100644 --- a/test/places.test.ts +++ b/test/places.test.ts @@ -363,7 +363,7 @@ describe('Places Module', () => { expect.objectContaining({ title: 'Want to go', id: 'to-go', - color: '#ff00ff', + color: '#2e9e4f', }) ); }); @@ -380,7 +380,7 @@ describe('Places Module', () => { expect.objectContaining({ title: 'To do', id: 'to-do', - color: '#008000', + color: '#2a7fff', }) ); });