From 9f213b17a45352240376cd08cb292a87619c6562 Mon Sep 17 00:00:00 2001 From: Abhinav Date: Tue, 28 Jun 2022 16:18:33 +0530 Subject: [PATCH] add fill colors --- src/themes/darkThemeOptions.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/themes/darkThemeOptions.tsx b/src/themes/darkThemeOptions.tsx index 8682db80b..12a85bcf0 100644 --- a/src/themes/darkThemeOptions.tsx +++ b/src/themes/darkThemeOptions.tsx @@ -8,12 +8,14 @@ import { declare module '@mui/material/styles' { interface Palette { accent: PaletteColor; + fill: PaletteColor; danger: PaletteColor; stroke: TypeText; } interface PaletteOptions { accent?: PaletteColorOptions; danger?: PaletteColorOptions; + fill?: PaletteColorOptions; stroke?: Partial; } @@ -211,6 +213,11 @@ const darkThemeOptions = createTheme({ dark: '#248546', light: '#2cd366', }, + fill: { + main: 'rgba(256, 256, 256, 0.2)', + dark: 'rgba(256, 256, 256, 0.1)', + light: 'rgba(256, 256, 256)', + }, text: { primary: '#fff', secondary: 'rgba(255, 255, 255, 0.7)',