From f6e0e6cc37a738558d8b763a1fd04034c19df188 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add animation configuration object with matchDuration: 250ms - Per CONTEXT.md recommendation (200-300ms range) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config.ts b/src/config.ts index a9b15b7..07de709 100644 --- a/src/config.ts +++ b/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;