simple-theme
Version:
Lightweight and highly-customizable theming package for your React Native apps
39 lines (32 loc) • 600 B
JavaScript
export const initValues = {
activeName: '',
defaultName: '',
themeKeys: [],
themeNames: [],
themes: {},
};
export const defaultTheme = {
name: 'default',
styles: {
backgroundColor: 'blue',
},
};
export const theme1 = {
name: 'theme1',
styles: {
backgroundColor: 'green',
},
};
export const theme2 = {
name: 'theme2',
styles: {
backgroundColor: 'orange',
},
};
export const themeMissingName = {
styles: {
backgroundColor: 'purple',
},
};
export const themeMissingStyles = {name: 'missingStyles'};
export const additionalThemes = [theme1, theme2];