-
-
Save tarex/4169a5eaf9b10c6f893ad2ced2bcdcdb to your computer and use it in GitHub Desktop.
styled-components v4 + createGlobalStyle + TypeScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react'; | |
import { theme } from './theme'; | |
import { ThemeProvider, createGlobalStyle } from './styled-components'; | |
const GlobalStyle = createGlobalStyle` | |
body { | |
font-family: Times New Roman; | |
} | |
`; | |
export default class Component extends React.Component<{}, {}> { | |
render() { | |
return ( | |
<ThemeProvider theme={theme}> | |
<> | |
{/* Other themed components go here */} | |
<GlobalStyle /> | |
</> | |
</ThemeProvider> | |
); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react'; | |
import { ThemedStyledComponentsModule } from 'styled-components'; | |
declare module 'styled-components' { | |
export interface ThemedStyledComponentsModule<T> { | |
createGlobalStyle( | |
strings: TemplateStringsArray, | |
...interpolations: SimpleInterpolation[] | |
): React.ComponentClass; | |
} | |
export function createGlobalStyle( | |
strings: TemplateStringsArray, | |
...interpolations: SimpleInterpolation[] | |
): React.ComponentClass; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as styledComponents from 'styled-components'; | |
import { ThemedStyledComponentsModule } from 'styled-components'; | |
import { StyleClosetTheme } from './theme'; | |
const { | |
default: styled, | |
css, | |
createGlobalStyle, | |
keyframes, | |
ThemeProvider | |
} = styledComponents as ThemedStyledComponentsModule<StyleClosetTheme>; | |
export { css, createGlobalStyle, keyframes, ThemeProvider }; | |
export default styled; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// JS reimplementation of Style Closet scales for use in styled-components | |
const colors = { | |
blue: '#2179ee', | |
green: '#00cc9a', | |
coral: '#ff6759', | |
gold: '#f0b95b', | |
purple: '#7537ef', | |
white: '#ffffff', | |
black: '#000000', | |
grey10: '#f3f4f8', | |
grey20: '#e1e5eb', | |
grey30: '#c2c6cc', | |
grey40: '#9ea2a8', | |
grey50: '#686c73', | |
grey60: '#30363d' | |
}; | |
const secondaryColors = { | |
blue10: '#ade7ff', | |
blue20: '#61bcff', | |
blue30: '#2179ee', | |
blue40: '#1f4ab4', | |
blue50: '#1d2064', | |
green10: '#b5ffcb', | |
green20: '#5dffa3', | |
green30: '#00cc9a', | |
green40: '#219a8a', | |
green50: '#183f51', | |
purple10: '#dec7ff', | |
purple20: '#a673ff', | |
purple30: '#7537ef', | |
purple40: '#4e23b6', | |
purple50: '#2d1b64', | |
coral10: '#ffc6b3', | |
coral20: '#ff8e75', | |
coral30: '#ff6759', | |
coral40: '#eb312a', | |
coral50: '#7b1e30', | |
gold10: '#ffedc2', | |
gold20: '#ffda8b', | |
gold30: '#f0b95b', | |
gold40: '#e5a229', | |
gold50: '#6a4a24' | |
}; | |
const breakpoints = ['31.25em', '43.75em', '46.875em']; | |
const fontSizes = ['1.2rem', '1.4rem', '1.6rem', '1.8rem', '2.4rem', '2.8rem', '3.2rem', '4.0rem', '4.8rem', '6.4rem']; | |
const space = ['0', '.4rem', '.8rem', '1.2rem', '1.6rem', '2.0rem', '3.2rem', '4.8rem', '6.4rem', '9.6rem']; | |
interface StyleClosetTheme { | |
breakpoints: string[]; | |
fontSizes: string[]; | |
space: string[]; | |
colors: { [key in keyof typeof colors]: string }; | |
secondaryColors: { [key in keyof typeof secondaryColors]: string }; | |
} | |
const theme: StyleClosetTheme = { | |
breakpoints, | |
fontSizes, | |
space, | |
colors, | |
secondaryColors | |
}; | |
export { theme, StyleClosetTheme }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment