Skip to content

Instantly share code, notes, and snippets.

@jamiejohnsonkc
Created July 7, 2020 23:10
Show Gist options
  • Select an option

  • Save jamiejohnsonkc/0d75bdea6dcc734265ee12cf1f0d0436 to your computer and use it in GitHub Desktop.

Select an option

Save jamiejohnsonkc/0d75bdea6dcc734265ee12cf1f0d0436 to your computer and use it in GitHub Desktop.
Set colorMode React
const TestApp = () => {
const [colorMode, setColorMode] = useColorMode()
setColorMode("dark")
return (
<Box bg="primary" height="100px" width="100px">
<Text color="highlight">Test Text</Text>
</Box>
)
}
export default TestApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment