Fix overleaf logo color on ds nav GitOrigin-RevId: c48ed09339aa1af03bdbad29e76d8cdb74260f0c
13 lines
426 B
TypeScript
13 lines
426 B
TypeScript
import { useEffect } from 'react'
|
|
import { useActiveOverallTheme } from './use-active-overall-theme'
|
|
|
|
export default function useThemedPage(featureFlag?: string) {
|
|
const activeOverallTheme = useActiveOverallTheme(featureFlag)
|
|
|
|
useEffect(() => {
|
|
// Sets the body's data-theme attribute for theming
|
|
document.body.dataset.theme =
|
|
activeOverallTheme === 'dark' ? 'default' : 'light'
|
|
}, [activeOverallTheme])
|
|
}
|