import * as React from 'react'; import { CssVarsProvider, extendTheme } from '@mui/joy/styles'; import colors from '@mui/joy/colors'; import Box from '@mui/joy/Box'; import ScopedCssBaseline from '@mui/joy/ScopedCssBaseline'; const theme = extendTheme({ colorSchemes: { forest: { palette: { mode: 'dark', background: { body: colors.green[200], }, }, }, }, }); export default function JoyScopedCssBaseline() { return ( {/* The scrollbar should be dark */} ); }