76 lines
1.2 KiB
JavaScript
76 lines
1.2 KiB
JavaScript
module.exports = {
|
|
plain: {
|
|
color: "#E0CCAE",
|
|
backgroundColor: "#0f0908",
|
|
},
|
|
styles: [
|
|
{
|
|
types: ["prolog", "builtin"],
|
|
style: {
|
|
color: "#bf472c",
|
|
},
|
|
},
|
|
{
|
|
types: ["function"],
|
|
style: {
|
|
color: "#d47d49",
|
|
},
|
|
},
|
|
{
|
|
types: ["symbol"],
|
|
style: {
|
|
color: "#BF472C",
|
|
},
|
|
},
|
|
{
|
|
types: ["punctuation"],
|
|
style: {
|
|
color: "#8a4b53",
|
|
},
|
|
},
|
|
{
|
|
types: ["string", "char", "tag", "selector"],
|
|
style: {
|
|
color: "#a4896f",
|
|
},
|
|
},
|
|
{
|
|
types: ["keyword"],
|
|
style: {
|
|
color: "#a47a7a",
|
|
},
|
|
},
|
|
{
|
|
types: ["operator"],
|
|
style: {
|
|
color: "#a67458",
|
|
},
|
|
},
|
|
{
|
|
types: ["constant", "boolean"],
|
|
style: {
|
|
color: "#ff9e64",
|
|
},
|
|
},
|
|
{
|
|
types: ["variable"],
|
|
style: {
|
|
color: "#E0CCAE",
|
|
},
|
|
},
|
|
{
|
|
types: ["comment"],
|
|
style: {
|
|
color: "#6B4035",
|
|
fontStyle: "italic",
|
|
},
|
|
},
|
|
{
|
|
types: ["attr-name"],
|
|
style: {
|
|
color: "rgb(241, 250, 140)",
|
|
},
|
|
},
|
|
],
|
|
};
|