Skip to content
This repository was archived by the owner on Mar 30, 2022. It is now read-only.

Commit c890ca7

Browse files
committed
added color documentation
1 parent d600c3d commit c890ca7

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,3 +248,33 @@ import Card from 'HSCard'
248248
| titleStyle | none | object (style) | additional title styling (if title provided) |
249249
| dividerStyle | none | object (style) | additional divider styling (if title provided) |
250250

251+
### Colors
252+
253+
Colors are configured in `./src/config/colors`:
254+
255+
````
256+
/**
257+
* @providesModule HSColors
258+
*/
259+
260+
export default {
261+
primary: '#397af8',
262+
primary1: '#4d86f7',
263+
primary2: '#6296f9',
264+
secondary: '#8F0CE8',
265+
secondary2: '#00B233',
266+
secondary3: '#00FF48',
267+
grey1: '#43484d',
268+
grey2: '#5e6977',
269+
grey3: '#86939e',
270+
grey4: '#bdc6cf',
271+
grey5: '#e1e8ee',
272+
dkGreyBg: '#232323',
273+
greyOutline: '#cbd2d9'
274+
}
275+
276+
277+
```
278+
279+
280+

0 commit comments

Comments
 (0)