Add Themes for styling
Opened this issue · 0 comments
Haimchen commented
- User can choose a theme from the settings page
- Theme is stored in local storage
When the app launches, the theme is retrieved from storage and provided to all components through Context: https://reactjs.org/docs/context.html
The Provider could
- Provide the theme name
- provide an Object that contains all variables belonging to the theme:
{ colors: { font: #237464, bg: #ffffff}}
- provide whole style object with theme already applied