github.com/kubeshop/testkube@v1.17.23/docs/src/themes/prism-testkube-mirage.js (about) 1 'use strict'; 2 3 var theme = { 4 plain: { 5 color: '#CCCAC2', 6 backgroundColor: '#242936' 7 }, 8 styles: [ 9 { 10 types: ['comment', 'prolog', 'doctype', 'cdata'], 11 style: { 12 color: '#B8CFE680', 13 fontStyle: 'italic' 14 }, 15 }, 16 { 17 types: ['namespace'], 18 style: { 19 opacity: 0.9 20 }, 21 }, 22 { 23 types: ['string', 'char', 'attr-value'], 24 style: { 25 color: '#D5FF80' 26 }, 27 }, 28 { 29 types: ['attribute'], 30 style: { 31 color: '#FFDFB3', 32 }, 33 }, 34 { 35 types: ['operator'], 36 style: { 37 color: '#F29E74' 38 }, 39 }, 40 { 41 types: ['entity', 'module-declaration', 'class-name', 'type-definition', 'url', 'symbol', 'variable', 'property'], 42 style: { 43 color: '#73D0FF' 44 }, 45 }, 46 { 47 types: ['regex'], 48 style: { 49 color: '#95E6CB', 50 }, 51 }, 52 { 53 types: ['constant', 'number', 'boolean'], 54 style: { 55 color: '#DFBFFF' 56 }, 57 }, 58 { 59 types: ['atrule', 'attr-name', 'selector'], 60 style: { 61 color: '#FA8D3E' 62 }, 63 }, 64 { 65 types: ['function', 'function-definition'], 66 style: { 67 color: '#FFD173' 68 }, 69 }, 70 { 71 types: ['function-variable'], 72 style: { 73 color: '#FFD173' 74 }, 75 }, 76 { 77 types: ['tag'], 78 style: { 79 color: '#5CCFE6', 80 }, 81 }, 82 { 83 types: ['selector', 'keyword'], 84 style: { 85 color: '#FFAD66' 86 }, 87 }, 88 { 89 types: ['inserted'], 90 style: { 91 color: '#87D96C', 92 }, 93 }, 94 { 95 types: ['deleted'], 96 style: { 97 color: '#F27983', 98 }, 99 }, 100 ] 101 }; 102 103 module.exports = theme;