import { alpha, createTheme, type Components, type CSSObject, responsiveFontSizes, type Theme, type ThemeOptions, ThemeProvider as MaterialUiThemeProvider, type TypographyStyle, type TypographyVariantsOptions, useTheme, } from '@mui/material/styles'; import { observer } from 'mobx-react-lite'; import React, { type ReactNode, createContext, useContext } from 'react'; import { useRootStore } from '../RootStore'; interface OuterPalette { background: string; border: string; } interface HighlightPalette { number: string; parameter: string; comment: string; activeLine: string; selection: string; lineNumber: string; foldPlaceholder: string; activeLintRange: string; occurences: { read: string; write: string; }; search: { match: string; selected: string; contrastText: string; }; } declare module '@mui/material/styles' { interface TypographyVariants { fontWeightEditorNormal: number; fontWeightEditorBold: number; editor: TypographyStyle; } // eslint-disable-next-line @typescript-eslint/no-shadow -- Augment imported interface. interface TypographyVariantsOptions { fontWeightEditorNormal: number; fontWeightEditorBold: number; editor: TypographyStyle; } interface Palette { outer: OuterPalette; highlight: HighlightPalette; } interface PaletteOptions { outer: OuterPalette; highlight: HighlightPalette; } } const typography: TypographyVariantsOptions = { fontWeightEditorNormal: 450, fontWeightEditorBold: 650, editor: { fontFamily: '"JetBrains MonoVariable", "JetBrains Mono", "Cascadia Code", "Fira Code", monospace', fontFeatureSettings: '"liga", "calt"', // `rem` for JetBrains MonoVariable make the text too large in Safari. fontSize: '16px', fontWeight: 400, lineHeight: 1.5, letterSpacing: 0, textRendering: 'optimizeLegibility', }, }; const components: Components = { MuiButton: { styleOverrides: { root: { '&.rounded': { borderRadius: '50em' }, '.MuiButton-startIcon': { marginRight: 6 }, '.MuiButton-endIcon': { marginLeft: 6 }, }, text: { '&.rounded': { padding: '6px 14px' } }, textSizeSmall: { fontSize: '0.875rem', '&.rounded': { padding: '4px 8px' }, }, textSizeLarge: { fontSize: '1rem', '&.rounded': { padding: '8px 20px' }, }, }, }, MuiToggleButton: { styleOverrides: { root: { '&.iconOnly': { borderRadius: '100%' } }, }, }, MuiToggleButtonGroup: { styleOverrides: { root: { '&.rounded .MuiToggleButtonGroup-groupedHorizontal': { ':first-of-type': { paddingLeft: 15, borderRadius: '50em 0 0 50em', }, ':last-of-type': { paddingRight: 15, borderRadius: '0 50em 50em 0', }, '&.MuiToggleButton-sizeSmall': { ':first-of-type': { paddingLeft: 9 }, ':last-of-type': { paddingRight: 9 }, }, '&.MuiToggleButton-sizeLarge': { ':first-of-type': { paddingLeft: 21 }, ':last-of-type': { paddingRight: 21 }, }, }, }, }, }, MuiTooltip: { styleOverrides: { tooltip: { background: alpha('#212121', 0.93), color: '#fff', }, arrow: { color: alpha('#212121', 0.93), }, }, }, }; function createResponsiveTheme(options: ThemeOptions): Theme { return responsiveFontSizes(createTheme(options)); } const lightTheme = createResponsiveTheme({ typography, components, palette: { mode: 'light', primary: { main: '#038a99' }, secondary: { main: '#e45649' }, error: { main: '#ca1243' }, warning: { main: '#c18401' }, success: { main: '#50a14f' }, info: { main: '#4078f2' }, background: { default: '#fff', paper: '#fff', }, text: { primary: '#19202b', secondary: '#696c77', disabled: '#a0a1a7', }, divider: alpha('#19202b', 0.16), outer: { background: '#f5f5f5', border: '#d6d7d9', }, highlight: { number: '#0084bc', parameter: '#6a3e3e', comment: '#a0a1a7', activeLine: '#f5f5f5', selection: '#c8e4fb', lineNumber: '#a0a1a7', foldPlaceholder: alpha('#19202b', 0.08), activeLintRange: alpha('#f2a60d', 0.28), occurences: { read: alpha('#19202b', 0.16), write: alpha('#19202b', 0.16), }, search: { match: '#00bcd4', selected: '#d500f9', contrastText: '#ffffff', }, }, }, }); const darkTheme = createResponsiveTheme({ typography: { ...typography, fontWeightEditorNormal: 400, fontWeightEditorBold: 600, }, components: { ...components, MuiSnackbarContent: { styleOverrides: { root: { color: '#f00', backgroundColor: '#000', border: `10px solid #ff0`, }, }, }, MuiTooltip: { ...(components.MuiTooltip || {}), styleOverrides: { ...(components.MuiTooltip?.styleOverrides || {}), tooltip: { ...((components.MuiTooltip?.styleOverrides?.tooltip as | CSSObject | undefined) || {}), color: '#ebebff', }, }, }, }, palette: { mode: 'dark', primary: { main: '#56b6c2' }, secondary: { main: '#be5046' }, error: { main: '#e06c75' }, warning: { main: '#e5c07b' }, success: { main: '#98c379' }, info: { main: '#61afef' }, background: { default: '#282c34', paper: '#21252b', }, text: { primary: '#ebebff', secondary: '#abb2bf', disabled: '#5c6370', }, divider: alpha('#abb2bf', 0.24), outer: { background: '#21252b', border: '#181a1f', }, highlight: { number: '#6188a6', parameter: '#c8ae9d', comment: '#5c6370', activeLine: '#21252b', selection: '#3e4453', lineNumber: '#5c6370', foldPlaceholder: alpha('#ebebff', 0.12), activeLintRange: alpha('#fbc346', 0.28), occurences: { read: alpha('#ebebff', 0.24), write: alpha('#ebebff', 0.24), }, search: { match: '#33eaff', selected: '#dd33fa', contrastText: '#21252b', }, }, }, }); const ContrastThemeContext = createContext(undefined); function ThemeAndContrastThemeProvider({ theme, contrastTheme, children, }: { theme: Theme; contrastTheme: Theme; children?: ReactNode; }): JSX.Element { return ( {children} ); } ThemeAndContrastThemeProvider.defaultProps = { children: undefined, }; export function ContrastThemeProvider({ children, }: { children?: ReactNode; }): JSX.Element { const theme = useTheme(); const contrastTheme = useContext(ContrastThemeContext); if (!contrastTheme) { throw new Error('ContrastThemeProvider must be used within ThemeProvider'); } return ( {children} ); } ContrastThemeProvider.defaultProps = { children: undefined, }; const ThemeProvider = observer(function ThemeProvider({ children, }: { children?: ReactNode; }): JSX.Element { const { themeStore: { darkMode }, } = useRootStore(); return ( {children} ); }); ThemeProvider.defaultProps = { children: undefined, }; export default ThemeProvider;