themmer
v3.1.4
Published
Easily access theme props in styled-components
Downloads
2
Readme
Themmer
Easily access theme prop in styled-components
Install
npm i -S themmer
Why
// Quite ugly theme accessing
const UglyComponent = styled.div`
background-color: ${props => props.theme.color.main.light};
color: ${props => props.theme.color.main.dark};
`
What
import tm from 'themmer'
// Less ugly theme accessing
const LessUglyComponent = styled.div`
background-color: ${tm`color.main.light`};
color: ${tm`color.main.dark`};
`