UNPKG

@mikezimm/fps-core-v7

Version:

Library of reusable core interfaces, types and constants migrated from fps-library-v2

19 lines 569 B
/** * 2024-09-07: Migrated from the same folder in fps-library-v2/common/commandStyles/... */ export function makeYellowStyles(defStyles) { if (!defStyles) { return {}; } else { let newStyle = JSON.parse(JSON.stringify(defStyles)); newStyle.color = 'black'; newStyle.background = 'yellow'; newStyle.fontSize = '20px'; newStyle.fontWeight = 400; newStyle.padding = '7px'; newStyle.marginLeft = '10px'; return newStyle; } } //# sourceMappingURL=makeYellow.js.map