diff --git a/src/themes/darkThemeOptions.tsx b/src/themes/darkThemeOptions.tsx index 3fe00e580..88c9b434d 100644 --- a/src/themes/darkThemeOptions.tsx +++ b/src/themes/darkThemeOptions.tsx @@ -2,16 +2,19 @@ import { createTheme, PaletteColor, PaletteColorOptions, + TypeText, } from '@mui/material/styles'; declare module '@mui/material/styles' { interface Palette { accent: PaletteColor; danger: PaletteColor; + stroke: TypeText; } interface PaletteOptions { accent?: PaletteColorOptions; danger?: PaletteColorOptions; + stroke?: Partial; } interface TypographyVariants { @@ -131,6 +134,11 @@ const darkThemeOptions = createTheme({ danger: { main: '#c93f3f', }, + stroke: { + primary: '#ffffff', + secondary: 'rgba(256,256,256,0.24)', + disabled: 'rgba(256,256,256,0.12)', + }, background: { default: '#000000', paper: '#1b1b1b' }, grey: { A100: '#ccc',