/** * prism.js Coy theme for JavaScript, CoffeeScript, CSS and HTML * Based on https://github.com/tshedor/workshop-wp-theme (Example: http://workshop.kansan.com/category/sessions/basics or http://workshop.timshedor.com/category/sessions/basics); * @author Tim Shedor */ :root { --code-c-text: #000; --code-c-bg: #fdfdfd; --code-c-highlight-bg: #f2efef; --code-c-line-number: rgba(0, 0, 0, 0.67); } div[class*=language-] pre ::selection { background: #b3d4fc; } .token.comment, .token.block-comment, .token.prolog, .token.doctype, .token.cdata { color: #7d8b99; } .token.punctuation { color: #5f6364; } .token.property, .token.tag, .token.boolean, .token.number, .token.function-name, .token.constant, .token.symbol, .token.deleted { color: #c92c2c; } .token.selector, .token.attr-name, .token.string, .token.char, .token.function, .token.builtin, .token.inserted { color: #2f9c0a; } .token.operator, .token.entity, .token.url, .token.variable { background: rgba(255, 255, 255, 0.5); color: #a67f59; } .token.atrule, .token.attr-value, .token.keyword, .token.class-name { color: #1990b8; } .token.regex, .token.important { color: #e90; } .language-css .token.string, .style .token.string { background: rgba(255, 255, 255, 0.5); color: #a67f59; } .token.important { font-weight: normal; } .token.bold { font-weight: bold; } .token.italic { font-style: italic; } .token.entity { cursor: help; } .token.namespace { opacity: 0.7; }