add fill colors

This commit is contained in:
Abhinav 2022-06-28 16:18:33 +05:30
parent 946f1de1b1
commit 9f213b17a4

View file

@ -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<TypeText>;
}
@ -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)',