github.com/Jeffail/benthos/v3@v3.65.0/website/src/plugins/prism_themes/github/index.js (about) 1 var theme = { 2 plain: { 3 color: "#393A34", 4 backgroundColor: "#f6f8fa" 5 }, 6 styles: [ 7 { 8 types: ["comment", "prolog", "doctype", "cdata"], 9 style: { 10 color: "#999988", 11 fontStyle: "italic" 12 } 13 }, 14 { 15 types: ["namespace"], 16 style: { 17 opacity: 0.7 18 } 19 }, 20 { 21 types: ["string", "attr-value"], 22 style: { 23 color: "#e3116c" 24 } 25 }, 26 { 27 types: ["punctuation", "operator"], 28 style: { 29 color: "#393A34" 30 } 31 }, 32 { 33 types: [ 34 "entity", 35 "url", 36 "symbol", 37 "number", 38 "boolean", 39 "variable", 40 "constant", 41 "property", 42 "regex", 43 "inserted" 44 ], 45 style: { 46 color: "#36acaa" 47 } 48 }, 49 { 50 types: ["atrule", "keyword", "attr-name", "selector"], 51 style: { 52 color: "#00a4db" 53 } 54 }, 55 { 56 types: ["function", "deleted", "tag"], 57 style: { 58 color: "#d73a49" 59 } 60 }, 61 { 62 types: ["function-variable"], 63 style: { 64 color: "#6f42c1" 65 } 66 }, 67 { 68 types: ["tag", "selector", "keyword"], 69 style: { 70 color: "#00009f" 71 } 72 } 73 ] 74 }; 75 module.exports = theme;