github.com/darmach/terratest@v0.34.8-0.20210517103231-80931f95e3ff/docs/assets/css/prism.css (about) 1 /* PrismJS 1.17.1 2 https://prismjs.com/download#themes=prism-solarizedlight&languages=markup+css+clike+javascript+bash+ruby+docker+go+hcl+java+json+python+yaml */ 3 /* 4 Solarized Color Schemes originally by Ethan Schoonover 5 http://ethanschoonover.com/solarized 6 7 Ported for PrismJS by Hector Matos 8 Website: https://krakendev.io 9 Twitter Handle: https://twitter.com/allonsykraken) 10 */ 11 12 /* 13 SOLARIZED HEX 14 --------- ------- 15 base03 #002b36 16 base02 #073642 17 base01 #586e75 18 base00 #657b83 19 base0 #839496 20 base1 #93a1a1 21 base2 #eee8d5 22 base3 #fdf6e3 23 yellow #b58900 24 orange #cb4b16 25 red #dc322f 26 magenta #d33682 27 violet #6c71c4 28 blue #268bd2 29 cyan #2aa198 30 green #859900 31 */ 32 33 code[class*="language-"], 34 pre[class*="language-"] { 35 color: #657b83; /* base00 */ 36 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; 37 font-size: 1em; 38 text-align: left; 39 white-space: pre; 40 word-spacing: normal; 41 word-break: normal; 42 word-wrap: normal; 43 44 line-height: 1.5; 45 46 -moz-tab-size: 4; 47 -o-tab-size: 4; 48 tab-size: 4; 49 50 -webkit-hyphens: none; 51 -moz-hyphens: none; 52 -ms-hyphens: none; 53 hyphens: none; 54 } 55 56 pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection, 57 code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection { 58 background: #073642; /* base02 */ 59 } 60 61 pre[class*="language-"]::selection, pre[class*="language-"] ::selection, 62 code[class*="language-"]::selection, code[class*="language-"] ::selection { 63 background: #073642; /* base02 */ 64 } 65 66 /* Code blocks */ 67 pre[class*="language-"] { 68 padding: 1em; 69 margin: .5em 0; 70 overflow: auto; 71 border-radius: 0.3em; 72 } 73 74 :not(pre) > code[class*="language-"], 75 pre[class*="language-"] { 76 background-color: #f0f0f1; /* base3 */ 77 } 78 79 /* Inline code */ 80 :not(pre) > code[class*="language-"] { 81 padding: .1em; 82 border-radius: .3em; 83 } 84 85 .token.comment, 86 .token.prolog, 87 .token.doctype, 88 .token.cdata { 89 color: #93a1a1; /* base1 */ 90 } 91 92 .token.punctuation { 93 color: #586e75; /* base01 */ 94 } 95 96 .namespace { 97 opacity: .7; 98 } 99 100 .token.property, 101 .token.tag, 102 .token.boolean, 103 .token.number, 104 .token.constant, 105 .token.symbol, 106 .token.deleted { 107 color: #268bd2; /* blue */ 108 } 109 110 .token.selector, 111 .token.attr-name, 112 .token.string, 113 .token.char, 114 .token.builtin, 115 .token.url, 116 .token.inserted { 117 color: #2aa198; /* cyan */ 118 } 119 120 .token.entity { 121 color: #657b83; /* base00 */ 122 background: #eee8d5; /* base2 */ 123 } 124 125 .token.atrule, 126 .token.attr-value, 127 .token.keyword { 128 color: #859900; /* green */ 129 } 130 131 .token.function, 132 .token.class-name { 133 color: #b58900; /* yellow */ 134 } 135 136 .token.regex, 137 .token.important, 138 .token.variable { 139 color: #cb4b16; /* orange */ 140 } 141 142 .token.important, 143 .token.bold { 144 font-weight: bold; 145 } 146 .token.italic { 147 font-style: italic; 148 } 149 150 .token.entity { 151 cursor: help; 152 }