aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/context/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/dev-tools-pages/ts/context/index.tsx')
-rw-r--r--packages/dev-tools-pages/ts/context/index.tsx9
1 files changed, 8 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/context/index.tsx b/packages/dev-tools-pages/ts/context/index.tsx
index 3aba2f34c..35c647ad6 100644
--- a/packages/dev-tools-pages/ts/context/index.tsx
+++ b/packages/dev-tools-pages/ts/context/index.tsx
@@ -6,7 +6,14 @@ interface ContextInterface {
subtitle?: string;
tagline?: string;
icon?: React.ReactNode;
- colors?: any;
+ colors?: {
+ main: string;
+ secondary: string;
+ secondary_alt: string;
+ type: string;
+ type_alt: string;
+ dark: string;
+ };
}
const ThemeContext = createContext({});