From 7dc0880d544a4ec2cb32bcfd642a7d03a8906c6b Mon Sep 17 00:00:00 2001 From: shlee9999 <95556588+shlee9999@users.noreply.github.com> Date: Tue, 1 Oct 2024 15:46:45 +0900 Subject: [PATCH] Feat: styled.d.ts --- src/styles/styled.d.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/styles/styled.d.ts diff --git a/src/styles/styled.d.ts b/src/styles/styled.d.ts new file mode 100644 index 0000000..1d0403f --- /dev/null +++ b/src/styles/styled.d.ts @@ -0,0 +1,24 @@ +import 'styled-components'; + +declare module 'styled-components' { + export interface DefaultTheme { + layout: { + max_width: string; + }; + colors: { + black: string; + gray: string; + text_gray: string; + bg_gray: string; + white: string; + primary: string; + text_primary: string; + yellow: string; + silver: string; + bronze: string; + }; + border: { + default: string; + }; + } +}