pleroma/app/soapbox/actions/theme.js

18 lines
300 B
JavaScript
Raw Normal View History

2020-05-30 22:21:41 -07:00
export const THEME_SET = 'THEME_SET';
export const THEME_GENERATE = 'THEME_GENERATE';
export function generateTheme(brandColor, mode) {
return {
type: THEME_GENERATE,
brandColor,
mode,
};
}
2020-05-30 17:05:01 -07:00
export function setTheme(themeData) {
return {
2020-05-30 22:21:41 -07:00
type: THEME_SET,
2020-05-30 17:05:01 -07:00
themeData,
};
}