From 4bbdb032638fc8a744951759e2efec65223bfc91 Mon Sep 17 00:00:00 2001 From: Patrick Keenan Date: Sun, 9 Jan 2022 00:04:24 -0800 Subject: [PATCH] chore: palette revision 1 --- store/index.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/store/index.js b/store/index.js index e4c5ff0..cfee9ff 100644 --- a/store/index.js +++ b/store/index.js @@ -8,31 +8,31 @@ export const state = () => ({ route: '/', label: 'fas fa-clock', title: 'Timekeeping Instruments', - darkColor: 'yellow-600', - lightColor: 'yellow-200', + darkColor: 'amber-900', + lightColor: 'amber-200', locked: false, }, { route: '/apprentices', label: 'fas fa-user-friends', title: 'Apprentices', - darkColor: 'blue-600', - lightColor: 'blue-200', + darkColor: 'rose-900', + lightColor: 'rose-200', locked: false, }, { route: '/missions', label: 'fas fa-th-list', title: 'Missions', - darkColor: 'violet-600', - lightColor: 'violet-200', + darkColor: 'sky-900', + lightColor: 'sky-200', locked: false, }, { route: '/timemachine', label: 'fas fa-fast-forward', title: 'Time Machine', - darkColor: 'lime-600', + darkColor: 'lime-900', lightColor: 'lime-200', locked: false, }, @@ -40,16 +40,16 @@ export const state = () => ({ route: '/timemagic', label: 'fas fa-eye', title: 'Time Magic', - darkColor: 'orange-600', - lightColor: 'orange-200', + darkColor: 'violet-900', + lightColor: 'violet-200', locked: false, }, { route: '/wisdom', label: 'fas fa-book-open', title: 'Wisdom', - darkColor: 'teal-600', - lightColor: 'teal-200', + darkColor: 'teal-900', + lightColor: 'teal-100', locked: false, }, ],