@heft/colors
v0.4.1
Published
UI Colors for heft.io
Downloads
108
Readme
UI Colors for heft.io
Project to maintain brand colors and re-use them whenever needed. The TypeScript package is compiled using CircleCI 2 and triggered by a GitHub Release. Afterwards it's published on NPM as @heft/colors
…
Installation
# use NPM
$ > npm install @heft/colors
# use YARN
$ > yarn add @heft/colors --dev
Usage
For example in a theme for styled components …
import { BLACK, WHITE } from '@heft/colors'
const Theme = {
background: WHITE
text: BLACK
}
export default Theme