From e7d2975d29a101f382ab904c83ffa4adbba81125 Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Wed, 11 Mar 2026 13:46:56 +0000 Subject: [PATCH] feat(06-01): add animation.matchDuration to CONFIG - Add animation configuration object with matchDuration: 250ms - Per CONTEXT.md recommendation (200-300ms range) --- gsd-framework/src/config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gsd-framework/src/config.ts b/gsd-framework/src/config.ts index a9b15b7..07de709 100644 --- a/gsd-framework/src/config.ts +++ b/gsd-framework/src/config.ts @@ -24,4 +24,7 @@ export const CONFIG = { selection: '#e94560', text: '#eaeaea', }, + animation: { + matchDuration: 250, // ms - scale+fade duration per CONTEXT.md + }, } as const;