Skip to content

Instantly share code, notes, and snippets.

@pveyes
Last active May 30, 2020 04:19
Show Gist options
  • Save pveyes/a0f3a18e909f0a09c7f04d588ce686b3 to your computer and use it in GitHub Desktop.
Save pveyes/a0f3a18e909f0a09c7f04d588ce686b3 to your computer and use it in GitHub Desktop.
dark mode for github gist
import React from 'react';
import useDarkMode from './useDarkMode';
const GitHubGist = props => {
const [theme] = useDarkMode();
const darkStyle = theme === 'dark'
? { filter: 'inverse(100%) hue-rotate(180deg)' }
: {}
return <iframe {...props} css={darkStyle} />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment