bigbuffet-rw/app/soapbox/utils/theme.js

6 lines
138 B
JavaScript
Raw Normal View History

2020-05-30 17:05:01 -07:00
export const themeDataToCss = themeData => (
themeData
.entrySeq()
.reduce((acc, cur) => acc + `--${cur[0]}:${cur[1]};`, '')
);