forked from vergnet/application-amicale
17 lines
357 B
JavaScript
17 lines
357 B
JavaScript
// @flow
|
|
|
|
import variable from "./../variables/platform";
|
|
|
|
export default (variables /*: * */ = variable) => {
|
|
const textTheme = {
|
|
fontSize: variables.DefaultFontSize,
|
|
fontFamily: variables.fontFamily,
|
|
color: variables.textColor,
|
|
".note": {
|
|
color: "#a7a7a7",
|
|
fontSize: variables.noteFontSize
|
|
}
|
|
};
|
|
|
|
return textTheme;
|
|
};
|