feat: sync dark mode bg output preview

This commit is contained in:
amhsirak
2025-10-13 17:56:02 +05:30
parent 462dc0ef3a
commit 270782917f

View File

@@ -193,7 +193,7 @@ export const InterpretationLog: React.FC<InterpretationLogProps> = ({ isOpen, se
onOpen={toggleDrawer(true)}
PaperProps={{
sx: {
background: `${darkMode ? '#1e2124' : 'white'}`,
background: `${darkMode ? '#1d1c1cff' : 'white'}`,
color: `${darkMode ? 'white' : 'black'}`,
padding: '10px',
height: outputPreviewHeight,