sigs.k8s.io/cluster-api@v1.7.1/docs/book/theme/highlight.css (about) 1 /*! 2 Theme: GitHub 3 Description: Light theme as seen on github.com 4 Author: github.com 5 Maintainer: @Hirse 6 Updated: 2021-05-15 7 8 Outdated base version: https://github.com/primer/github-syntax-light 9 Current colors taken from GitHub's CSS 10 */ 11 12 .hljs { 13 display: block; 14 background-color: #f9fafa; 15 margin-bottom: 1.5em; 16 padding: 20px 30px 20px; 17 white-space: pre; 18 transform: translate3d(0, 0, 0); 19 overflow-x: auto; 20 border: 1px solid #d2d2d7; 21 tab-size: 4; 22 } 23 24 .hljs-doctag, 25 .hljs-keyword, 26 .hljs-meta .hljs-keyword, 27 .hljs-template-tag, 28 .hljs-template-variable, 29 .hljs-type, 30 .hljs-variable.language_ { 31 /* prettylights-syntax-keyword */ 32 color: #d73a49; 33 } 34 35 .hljs-title, 36 .hljs-title.class_, 37 .hljs-title.class_.inherited__, 38 .hljs-title.function_ { 39 /* prettylights-syntax-entity */ 40 color: #6f42c1; 41 } 42 43 .hljs-attr, 44 .hljs-attribute, 45 .hljs-literal, 46 .hljs-meta, 47 .hljs-number, 48 .hljs-operator, 49 .hljs-variable, 50 .hljs-selector-attr, 51 .hljs-selector-class, 52 .hljs-selector-id { 53 /* prettylights-syntax-constant */ 54 color: #005cc5; 55 } 56 57 .hljs-regexp, 58 .hljs-string, 59 .hljs-meta .hljs-string { 60 /* prettylights-syntax-string */ 61 color: #032f62; 62 } 63 64 .hljs-built_in, 65 .hljs-symbol { 66 /* prettylights-syntax-variable */ 67 color: #e36209; 68 } 69 70 .hljs-comment, 71 .hljs-code, 72 .hljs-formula { 73 /* prettylights-syntax-comment */ 74 color: #6a737d; 75 } 76 77 .hljs-name, 78 .hljs-quote, 79 .hljs-selector-tag, 80 .hljs-selector-pseudo { 81 /* prettylights-syntax-entity-tag */ 82 color: #22863a; 83 } 84 85 .hljs-subst { 86 /* prettylights-syntax-storage-modifier-import */ 87 color: #24292e; 88 } 89 90 .hljs-section { 91 /* prettylights-syntax-markup-heading */ 92 color: #005cc5; 93 font-weight: bold; 94 } 95 96 .hljs-bullet { 97 /* prettylights-syntax-markup-list */ 98 color: #735c0f; 99 } 100 101 .hljs-emphasis { 102 /* prettylights-syntax-markup-italic */ 103 color: #24292e; 104 font-style: italic; 105 } 106 107 .hljs-strong { 108 /* prettylights-syntax-markup-bold */ 109 color: #24292e; 110 font-weight: bold; 111 } 112 113 .hljs-addition { 114 /* prettylights-syntax-markup-inserted */ 115 color: #22863a; 116 background-color: #f0fff4; 117 } 118 119 .hljs-deletion { 120 /* prettylights-syntax-markup-deleted */ 121 color: #b31d28; 122 background-color: #ffeef0; 123 } 124 125 .hljs-char.escape_, 126 .hljs-link, 127 .hljs-params, 128 .hljs-property, 129 .hljs-punctuation, 130 .hljs-tag { 131 /* purposely ignored */ 132 }