21 lines
471 B
TypeScript
21 lines
471 B
TypeScript
import React from 'react';
|
|
import { Global, css } from '@emotion/react';
|
|
import tw, { theme, GlobalStyles as BaseStyles } from 'twin.macro';
|
|
|
|
const customStyles = css({
|
|
body: {
|
|
WebkitTapHighlightColor: theme`colors.purple.500`,
|
|
...tw`antialiased`,
|
|
...tw`dark:bg-dark-800 bg-dark-100 dark:text-gray-100 text-gray-800`,
|
|
},
|
|
});
|
|
|
|
const GlobalStyles = () => (
|
|
<>
|
|
<BaseStyles />
|
|
<Global styles={customStyles} />
|
|
</>
|
|
);
|
|
|
|
export default GlobalStyles;
|