pleroma/app/soapbox/actions/theme.js
2020-05-31 00:21:41 -05:00

17 lines
300 B
JavaScript

export const THEME_SET = 'THEME_SET';
export const THEME_GENERATE = 'THEME_GENERATE';
export function generateTheme(brandColor, mode) {
return {
type: THEME_GENERATE,
brandColor,
mode,
};
}
export function setTheme(themeData) {
return {
type: THEME_SET,
themeData,
};
}