@taskany/colors
v1.13.1
Published
Taskany themes
Downloads
1,402
Readme
Taskany Colors
This is a package with colors and themes, which we use in our projects.
Install
$ npm i @taskany/colors
Usage
import { gray2, DarkTheme } from '@taskany/colors';
const GrayText = styled.div`
color: ${gray2};
`;
// Use theme like styled-components global style
const App = () => (
<>
<DarkTheme />
<GrayText>Taskany Gray Text</GrayText>
</>
);