13 lines
266 B
JavaScript
13 lines
266 B
JavaScript
// @flow
|
|
|
|
import variable from "./../variables/platform";
|
|
|
|
export default (variables /*: * */ = variable) => {
|
|
const h1Theme = {
|
|
color: variables.textColor,
|
|
fontSize: variables.fontSizeH1,
|
|
lineHeight: variables.lineHeightH1,
|
|
};
|
|
|
|
return h1Theme;
|
|
};
|