@sa-labs/fate-core
Version:
fate-core contains the base assumptions of the fate ecosystem as well as utilities for operating with fate.
22 lines (21 loc) • 740 B
JavaScript
var merge = require('lodash/object/merge');
module.exports = function constants(obj) {
return {
fateCore: merge({},
{
fontSizeRoot: '16px',
fontFamilyBase: '"Helvetica Neue", Helvetica, Arial, sans-serif',
fontSizeBase: '1rem',
lineHeight: 1.5,
bodyColor: 'black',
bodyBg: 'white',
linkColor: 'blue',
linkHoverColor: 'lightblue',
linkHoverDecoration: 'none',
tableBg: '#efefef',
tableCellPadding: '1rem',
textMuted: '#efefef'
},
obj)
}
}