From 4baa0f8fd6aa7a32a6fe83e0305dc5dbc0a9c8e7 Mon Sep 17 00:00:00 2001 From: gahusb Date: Mon, 27 Apr 2026 08:26:08 +0900 Subject: [PATCH] feat: add local adaptive color shim to replace @toss/tds-colors --- src/styles/adaptive.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/styles/adaptive.ts diff --git a/src/styles/adaptive.ts b/src/styles/adaptive.ts new file mode 100644 index 0000000..ba370b7 --- /dev/null +++ b/src/styles/adaptive.ts @@ -0,0 +1,13 @@ +export const adaptive = { + background: '#ffffff', + greyBackground: '#f7f8fa', + grey100: '#f1f3f5', + grey200: '#e5e8eb', + grey300: '#d1d6db', + grey400: '#b0b8c1', + grey500: '#8b95a1', + grey600: '#6b7684', + grey700: '#4e5968', + grey900: '#191f28', + blue500: '#3182f6', +} as const;