@taskany/colors
v1.14.0
Published
Taskany themes
Readme
Taskany Colors
This is a package with colors and themes, which we use in our projects.
Install
$ npm i @taskany/colorsUsage
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>
</>
);