apphouse
Version:
Component library for React that uses observable state management and theme-able components.
14 lines (12 loc) • 358 B
text/typescript
import { BaseStyleProps } from './baseStyles.interface';
import { BodyStyles } from './defaults/themes.interface';
/**
* @description - Get styles for utilities
* @returns {FocusStyles}
*/
export const getBodyStyles = ({ colors }: BaseStyleProps): BodyStyles => {
return {
backgroundColor: colors.background,
color: colors.onBackground
};
};