github.com/kubeshop/testkube@v1.17.23/docs/src/themes/prism-testkube-dark.js (about) 1 'use strict'; 2 3 var theme = { 4 plain: { 5 color: '#BFBDB6', 6 backgroundColor: '#0D1017' 7 }, 8 styles: [ 9 { 10 types: ['comment', 'prolog', 'doctype', 'cdata'], 11 style: { 12 color: '#ACB6BF8C', 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: '#AAD94C' 26 }, 27 }, 28 { 29 types: ['attribute'], 30 style: { 31 color: '#E6B673', 32 }, 33 }, 34 { 35 types: ['operator'], 36 style: { 37 color: '#F29668' 38 }, 39 }, 40 { 41 types: ['entity', 'module-declaration', 'class-name', 'type-definition', 'url', 'symbol', 'variable', 'property'], 42 style: { 43 color: '#59C2FF' 44 }, 45 }, 46 { 47 types: ['regex'], 48 style: { 49 color: '#95E6CB', 50 }, 51 }, 52 { 53 types: ['constant', 'number', 'boolean'], 54 style: { 55 color: '#D2A6FF' 56 }, 57 }, 58 { 59 types: ['atrule', 'attr-name', 'selector'], 60 style: { 61 color: '#FF8F40' 62 }, 63 }, 64 { 65 types: ['function', 'function-definition'], 66 style: { 67 color: '#FFB454' 68 }, 69 }, 70 { 71 types: ['function-variable'], 72 style: { 73 color: '#FFB454' 74 }, 75 }, 76 { 77 types: ['tag'], 78 style: { 79 color: '#39BAE6', 80 }, 81 }, 82 { 83 types: ['selector', 'keyword'], 84 style: { 85 color: '#FF8F40' 86 }, 87 }, 88 { 89 types: ['inserted'], 90 style: { 91 color: '#7FD962', 92 }, 93 }, 94 { 95 types: ['deleted'], 96 style: { 97 color: '#F26D78', 98 }, 99 }, 100 ] 101 }; 102 103 module.exports = theme;