UNPKG

blissfuljs

Version:

Lightweight helper library for modern browsers.

129 lines (109 loc) 2.22 kB
/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript */ /** * prism.js default theme for JavaScript, CSS and HTML * Based on dabblet (http://dabblet.com) * @author Lea Verou */ code[class*="language-"], pre[class*="language-"] { color: black; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; word-spacing: normal; word-break: normal; word-wrap: normal; line-height: 1.5; tab-size: 4; isolation: isolate; } pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection, code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection { background: #b3d4fc; } pre[class*="language-"]::selection, pre[class*="language-"] ::selection, code[class*="language-"]::selection, code[class*="language-"] ::selection { background: #b3d4fc; } @media print { code[class*="language-"], pre[class*="language-"] { text-shadow: none; } } /* Code blocks */ pre[class*="language-"] { padding: 1em 0; margin: .5em 0; overflow: auto; box-shadow: -35vw 0 hsl(145, 34%, 95%), 35vw 0 hsl(145, 34%, 95%); } :not(pre) > code[class*="language-"], pre[class*="language-"] { background: hsl(145, 34%, 95%); } /* Inline code */ :not(pre) > code[class*="language-"] { padding: .1em; border-radius: .2em; white-space: normal; box-shadow: 0 0 0 .1em hsl(145, 34%, 95%); } .token.comment, .token.prolog, .token.doctype, .token.cdata { color: slategray; mix-blend-mode: multiply; } .token.punctuation { color: #999; } .namespace { opacity: .7; } .token.property, .token.tag, .token.boolean, .token.number, .token.constant, .token.symbol, .token.deleted { color: #905; } .token.selector, .token.attr-name, .token.string, .token.char, .token.builtin, .token.inserted { color: #690; } .token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string { color: #a67f59; } .token.atrule, .token.attr-value, .token.keyword { color: #07a; } .token.function { color: hsl(350, 80%, 55%); } .token.regex, .token.important, .token.variable { color: #e90; } .token.important, .token.bold { font-weight: bold; } .token.italic { font-style: italic; } .token.entity { cursor: help; }