diff --git a/striker-ui/lib/consts/DEFAULT_THEME.ts b/striker-ui/lib/consts/DEFAULT_THEME.ts new file mode 100644 index 00000000..92f43cee --- /dev/null +++ b/striker-ui/lib/consts/DEFAULT_THEME.ts @@ -0,0 +1,10 @@ +import { DefaultTheme } from 'styled-components'; + +const DEFAULT_THEME: Readonly = { + colors: { + primary: '#f2f2f2', + secondary: '#343434', + }, +}; + +export default DEFAULT_THEME; diff --git a/striker-ui/types/DefaultTheme.d.ts b/striker-ui/types/DefaultTheme.d.ts new file mode 100644 index 00000000..16d45c7b --- /dev/null +++ b/striker-ui/types/DefaultTheme.d.ts @@ -0,0 +1,10 @@ +import 'styled-components'; + +declare module 'styled-components' { + export interface DefaultTheme { + colors: { + primary: string; + secondary: string; + }; + } +}