const DOCTYPE_EXP=/<\!DOCTYPE html>/,TAG_START_EXP=/<([\w\-]+)([\w\W]*?)>/g,TAG_END_EXP=/<\/([\w\-]+)>/g,TAG_ATTR_EXP=/[@a-zA-Z\-.]+=(["'])[^"]+\1|[@a-zA-Z\-.]+=[a-zA-Z0-9]+|[@a-zA-Z\-.]+/g,TAG_CM_EXP=//g;export function colorHtml(t){return(t=t.replace(DOCTYPE_EXP,"[tag]<!DOCTYPE [attr]html[/attr]>[/tag]").replace(TAG_START_EXP,(t,a,r)=>(r&&(r=r.replace(TAG_ATTR_EXP,(function(t){if(~t.indexOf("=")){return`[attr]${(t=t.split("=")).shift()}[/attr]=[str]${t.join("=")}[/str]`}return`[attr]${t}[/attr]`}))),`[tag]<${a+r}>[/tag]`)).replace(TAG_END_EXP,(t,a)=>`[tag]</${a}>[/tag]`).replace(TAG_CM_EXP,'<!--$1-->')).replace(/\[(\/?)tag\]/g,(t,a)=>a?"":'').replace(/\[(\/?)attr\]/g,(t,a)=>a?"":'').replace(/\[(\/?)str\]/g,(t,a)=>a?"":'')}export function colorCss(t){return t=t.replace(/:(hover|after|active|last\-child|first\-child)/g,':$1').replace(/([\.#])([\w\-]+)/g,'$1$2').replace(/([a-zA-Z\-]+):\s?([^;\n]+);?/g,'$1: $2;').replace(/([,\{\}])/g,'$1').replace(/&/g,'&')}