-
-
Notifications
You must be signed in to change notification settings - Fork 53
Open
Description
On CreateThemeContent.js, the text and background colors are swaped.
const getThemeObj = () => {
const themeObj = {};
themeObj[_.camelCase(state.themeName)] = {
"id": generate(),
"name": state.themeName,
"colors": {
"body": state.bgColor,
"text": state.txtColor,
"button": {
"text": state.btnBgColor, // <= This two lines are swapped
"background": state.btnTxtColor //
},
"link": {
"text": state.linkColor,
"opacity": 1
}
},
"font": state.font
};
return themeObj;
}
Metadata
Metadata
Assignees
Labels
No labels