@@ -6,7 +6,8 @@ export default class CodeFlaskElement extends HTMLElement {
66 this . attachShadow ( { mode : 'open' } )
77 this . shadowRoot . innerHTML += `<style> :host { display: block; position: relative;
88 overflow-x: auto; min-height: 100px; }
9- .codeflask .token.punctuation { color: var(--codeflask-punctuation, #4a4a4a) }
9+ .codeflask .token.title { color: var(--codeflask-title, #000) }
10+ .codeflask .token.punctuation { color: var(--codeflask-punctuation, #6a6a6a) }
1011 .codeflask .token.keyword { color: var(--codeflask-keyword, #8500ff) }
1112 .codeflask .token.operator { color: var(--codeflask-operator, #ff5598) }
1213 .codeflask .token.string { color: var(--codeflask-string, #41ad8f) }
@@ -18,6 +19,9 @@ export default class CodeFlaskElement extends HTMLElement {
1819 .codeflask .token.property { color: var(--codeflask-property, #8500ff) }
1920 .codeflask .token.tag { color: var(--codeflask-tag, #8500ff) }
2021 .codeflask .token.attr-value { color: var(--codeflask-attr-value, #8500ff) }
22+ .codeflask .token.url { color: var(--codeflask-url, #4040ff) }
23+ .codeflask .token.italic { font-style: italic }
24+ .codeflask .token.bold { font-weight: bolder }
2125 </style>`
2226 this . editorElement = document . createElement ( 'div' )
2327 this . editorElement . style . width = '100%'
0 commit comments