Add 'color-scheme' CSS prop for better browser rendering

dnd
Justin 2022-06-01 14:27:04 -04:00
rodzic 56cbde77f4
commit bca5a2988d
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -141,6 +141,7 @@ const SoapboxMount = () => {
<html lang={locale} className={classNames('h-full', { dark: darkMode })} />
<body className={bodyClass} />
{themeCss && <style id='theme' type='text/css'>{`:root{${themeCss}}`}</style>}
{darkMode && <style type='text/css'>{':root { color-scheme: dark; }'}</style>}
<meta name='theme-color' content={soapboxConfig.brandColor} />
</Helmet>
);