UNPKG

react-code-blocks

Version:

Modified Atlaskit's Code Block to support more languages (i.e graphql, reasonml, etc) and theme (i.e railscast, dracula, monokai, etc) code snippets!

11 lines (9 loc) 246 B
import { CodeBlockTheme } from '../../types'; export const getStyles = (theme: CodeBlockTheme) => { const styles = { color: theme.textColor, border: theme.lineNumberBgColor, bgColor: theme.backgroundColor, }; return styles; };