Closed designmatty closed 4 years ago
Currently, we allow the user to define the default font-family, font-size and line-height on the body. We should include the ability to set color as well.
font-family
font-size
line-height
color
After this line: https://github.com/raster-foundry/blasterjs/blob/a13618bcc885c221abcf5975cf35e9f4b88c4e7c/packages/core/components/globalStyle/index.js#L64 add color: ${themeGet("color.textBase")};
color: ${themeGet("color.textBase")};
Currently, we allow the user to define the default
font-family
,font-size
andline-height
on the body. We should include the ability to setcolor
as well.After this line: https://github.com/raster-foundry/blasterjs/blob/a13618bcc885c221abcf5975cf35e9f4b88c4e7c/packages/core/components/globalStyle/index.js#L64 add
color: ${themeGet("color.textBase")};