25 lines
483 B
JavaScript
25 lines
483 B
JavaScript
|
import { commonLight } from "../../_styles/common/index.mjs";
|
||
|
const self = vars => {
|
||
|
const {
|
||
|
errorColor,
|
||
|
infoColor,
|
||
|
successColor,
|
||
|
warningColor,
|
||
|
fontFamily
|
||
|
} = vars;
|
||
|
return {
|
||
|
color: errorColor,
|
||
|
colorInfo: infoColor,
|
||
|
colorSuccess: successColor,
|
||
|
colorError: errorColor,
|
||
|
colorWarning: warningColor,
|
||
|
fontSize: '12px',
|
||
|
fontFamily
|
||
|
};
|
||
|
};
|
||
|
const badgeLight = {
|
||
|
name: 'Badge',
|
||
|
common: commonLight,
|
||
|
self
|
||
|
};
|
||
|
export default badgeLight;
|