useThemeUI
To access the context
object directly in a component, use the useThemeUI
hook.
Edit the page on GitHubimport React from 'react'import { useThemeUI } from 'theme-ui'export default props => {const context = useThemeUI()const { theme, colorMode, setColorMode } = contextreturn <pre>{JSON.stringify(theme, null, 2)}</pre>}