prism-react-renderer
Version:
Renders highlighted Prism output using React
27 lines (25 loc) • 548 B
JavaScript
// Original: https://github.com/damienstanton/ultramin
// Converted automatically using ./tools/themeFromVsCode
var theme = {
plain: {
color: "#282a2e",
backgroundColor: "#ffffff"
},
styles: [{
types: ["comment"],
style: {
color: "rgb(197, 200, 198)"
}
}, {
types: ["string", "number", "builtin", "variable"],
style: {
color: "rgb(150, 152, 150)"
}
}, {
types: ["class-name", "function", "tag", "attr-name"],
style: {
color: "rgb(40, 42, 46)"
}
}]
};
export default theme;