diff --git a/main.js b/main.js index cf74e3f..f21c6ea 100644 --- a/main.js +++ b/main.js @@ -3,7 +3,6 @@ var defaultsettings = fontsize: "16px", fontcolor: "rgb(55, 53, 47)", lineheight: "24px", - accentcolor: "#5AA7CE", margins: "20%", savedelay: 2000, defaultpreviewinsplit: false, @@ -1317,7 +1316,6 @@ function applystyle() document.body.style.fontSize = settings.fontsize; document.body.style.lineHeight = settings.lineheight; document.body.style.color = settings.fontcolor; - document.body.style.caretColor = settings.accentcolor; document.body.style.marginLeft = settings.margins; document.body.style.marginRight = settings.margins; } @@ -2106,8 +2104,8 @@ function rawline2html(line, index, options) // headings if (line.startsWith("#")) { - line = line.replace(/(#* )/, "$1"); // to check! - line = "" + line + ""; + line = line.replace(/(#* )/, "$1"); + line = "" + line + ""; } // bold and italics @@ -2116,7 +2114,7 @@ function rawline2html(line, index, options) { temp = line.substring(2); } - temp = temp.replace(/\*\*([^\*]*)\*\*/g, "**$1**"); + temp = temp.replace(/\*\*([^\*]*)\*\*/g, "**$1**"); temp = temp.replace(/\*([^\*]*)\*/g, "*$1*"); if (line.startsWith("* ")) @@ -2133,7 +2131,7 @@ function rawline2html(line, index, options) { if (line.startsWith(marker) && marker.trim()) { - line = line.replace(marker, "" + marker + ""); + line = line.replace(marker, "" + marker + ""); } }); @@ -2157,7 +2155,7 @@ function rawline2html(line, index, options) { options.code = true; options.language = line.substring(3); - line = "
" + line.replace(new RegExp("(" + options.language + ")"), "$1") + "
"; + line = "
" + line.replace(new RegExp("(" + options.language + ")"), "$1") + "
"; } else if (line == "```" && options.code) { @@ -2179,7 +2177,7 @@ function rawline2html(line, index, options) var keywords = languagekeywords[options.language]; keywords.forEach(keyword => { - line = line.replace(new RegExp("\\b(" + keyword + ")\\b", "ig"), "$1"); + line = line.replace(new RegExp("\\b(" + keyword + ")\\b", "ig"), "$1"); }); } } @@ -2250,8 +2248,8 @@ function rawline2html(line, index, options) } else { - line = line.replace(/(\(\w\))/g, "$1"); - line = line.replace(/(@\w*)/g, "$1"); + line = line.replace(/(\(\w\))/g, "$1"); + line = line.replace(/(@\w*)/g, "$1"); line = line.replace(/(\s\+\w*)/g, "$1"); } } diff --git a/style.css b/style.css index 1e223e2..d21e901 100644 --- a/style.css +++ b/style.css @@ -1,10 +1,16 @@ /* globals */ +:root { + --black: rgb(55, 53, 47); + --blue: #5AA7CE; + --shadow: 0.75px 0 0; +} body { margin-left: 7%; margin-right: 7%; background: white; font-family: system-ui; + caret-color: var(--blue); } a { @@ -144,7 +150,11 @@ body::-webkit-scrollbar-thumb { /* colors */ .color-code { color:lightgray; - background-color:rgb(55, 53, 47); + background-color:var(--black); +} + +.color-accent { + color: var(--blue); } /* link dialog */ @@ -152,7 +162,7 @@ body::-webkit-scrollbar-thumb { border-radius: 3px; opacity:1; color: white; - background-color:rgb(55, 53, 47); + background-color:var(--black); position:absolute; }