next-material-kit
Version:
NextJS Version of Material Kit React by Creative Tim (https://creative-tim.com)
49 lines (46 loc) • 865 B
JavaScript
import {
primaryColor,
warningColor,
dangerColor,
successColor,
infoColor,
roseColor,
} from "styles/jss/nextjs-material-kit.js";
const badgeStyle = {
badge: {
marginRight: "3px",
borderRadius: "12px",
padding: "5px 12px",
textTransform: "uppercase",
fontSize: "10px",
fontWeight: "500",
lineHeight: "1",
color: "#fff",
textAlign: "center",
whiteSpace: "nowrap",
verticalAlign: "baseline",
display: "inline-block",
},
primary: {
backgroundColor: primaryColor,
},
warning: {
backgroundColor: warningColor,
},
danger: {
backgroundColor: dangerColor,
},
success: {
backgroundColor: successColor,
},
info: {
backgroundColor: infoColor,
},
rose: {
backgroundColor: roseColor,
},
gray: {
backgroundColor: "#6c757d",
},
};
export default badgeStyle;