@airplane/views
Version:
A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.
59 lines (58 loc) • 1.05 kB
JavaScript
var theme = {
plain: {
color: "#F8F8F2",
backgroundColor: "#282A36"
},
styles: [{
types: ["prolog", "constant", "builtin"],
style: {
color: "rgb(189, 147, 249)"
}
}, {
types: ["inserted", "function"],
style: {
color: "rgb(80, 250, 123)"
}
}, {
types: ["deleted"],
style: {
color: "rgb(255, 85, 85)"
}
}, {
types: ["changed"],
style: {
color: "rgb(255, 184, 108)"
}
}, {
types: ["punctuation", "symbol"],
style: {
color: "rgb(248, 248, 242)"
}
}, {
types: ["string", "char", "tag", "selector"],
style: {
color: "rgb(255, 121, 198)"
}
}, {
types: ["keyword", "variable"],
style: {
color: "rgb(189, 147, 249)",
fontStyle: "italic"
}
}, {
types: ["comment"],
style: {
color: "rgb(98, 114, 164)"
}
}, {
types: ["attr-name"],
style: {
color: "rgb(241, 250, 140)"
}
}]
};
const dracula = theme;
export {
dracula as default
};
//# sourceMappingURL=index.js.map