From b7a1f0e3e7826a59ece8732ecbc7dd5f37840aeb Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Wed, 4 Sep 2024 20:04:55 +0200 Subject: [PATCH] Remove useless colors --- types/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/types.ts b/types/types.ts index 5f0455b..ad23283 100644 --- a/types/types.ts +++ b/types/types.ts @@ -1,6 +1,6 @@ import { z } from 'zod' -export const COLORS = ['gray', 'slate', 'zinc', 'neutral', 'stone', 'red', 'orange', 'amber', 'yellow', 'lime', 'green', 'emerald', 'teal', 'cyan', 'sky', 'blue', 'indigo', 'violet', 'purple', 'fuchsia', 'pink', 'rose'] +export const COLORS = ['gray', 'red', 'orange', 'amber', 'yellow', 'lime', 'green', 'emerald', 'teal', 'cyan', 'sky', 'blue', 'indigo', 'violet', 'purple', 'fuchsia', 'pink', 'rose'] export const Subscription = ['free', 'paid'] as const