We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On CreateThemeContent.js, the text and background colors are swaped.
CreateThemeContent.js
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; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On
CreateThemeContent.js
, the text and background colors are swaped.The text was updated successfully, but these errors were encountered: