File: //matrixSwot/frontend/src/assets/jss/material-dashboard-pro-react/components/badgeStyle.js
import {
primaryColor,
warningColor,
dangerColor,
successColor,
infoColor,
roseColor,
grayColor,
whiteColor
} from "assets/jss/material-dashboard-pro-react.js";
const badgeStyle = {
badge: {
borderRadius: "12px",
padding: "5px 12px",
textTransform: "uppercase",
fontSize: "10px",
fontWeight: "700",
lineHeight: "1",
color: whiteColor,
textAlign: "center",
verticalAlign: "baseline",
display: "inline-block"
},
primary: {
backgroundColor: primaryColor[0]
},
warning: {
backgroundColor: warningColor[0]
},
danger: {
backgroundColor: dangerColor[0]
},
success: {
backgroundColor: successColor[0]
},
info: {
backgroundColor: infoColor[0]
},
rose: {
backgroundColor: roseColor[0]
},
gray: {
backgroundColor: grayColor[0]
}
};
export default badgeStyle;