13 lines
408 B
TypeScript
13 lines
408 B
TypeScript
|
|
import { createGlobalStyle, ThemeProps } from 'styled-components';
|
||
|
|
import { Theme } from '../style/themes';
|
||
|
|
|
||
|
|
const EditorGlobalStyle = createGlobalStyle<ThemeProps<Theme>>`
|
||
|
|
html, body {
|
||
|
|
color-scheme: ${props => props.theme.lightOrDark};
|
||
|
|
scrollbar-color: ${props => props.theme.lightOrDark};
|
||
|
|
background-color: ${props => props.theme.editor.background};
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export default EditorGlobalStyle;
|