UNPKG

345 BJavaScriptView Raw
1export var getBlockBackgroundStyle = function getBlockBackgroundStyle(theme) {
2 return {
3 borderRadius: theme.appBorderRadius,
4 background: theme.background.content,
5 boxShadow: theme.base === 'light' ? 'rgba(0, 0, 0, 0.10) 0 1px 3px 0' : 'rgba(0, 0, 0, 0.20) 0 2px 5px 0',
6 border: "1px solid ".concat(theme.appBorderColor)
7 };
8};
\No newline at end of file