diff --git a/index.html b/index.html index 35a74ac..623f28a 100644 --- a/index.html +++ b/index.html @@ -10,11 +10,9 @@ :root { background-color: #2c2f33; - } - - .titlebar { - font-family: Verdana, Geneva, Tahoma, sans-serif; - background-color: #202225; + --header-secondary: #b9bbbe; + --header-primary: #fff; + --background-tertiary: #202225; } body { diff --git a/preload.js b/preload.js index 69e1729..4d12de9 100644 --- a/preload.js +++ b/preload.js @@ -79,17 +79,16 @@ div.menubar[role="menubar"] { } `); - ArmCord.addStyle( - `.info-1VyQPT:last-child:before { - content: "ArmCord Version: ` + - ArmCord.Version + - `"; + +ArmCord.addStyle(`.info-1VyQPT:last-child:before { + content: "ArmCord Version: ` + ArmCord.Version + `"; height: auto; line-height: 16px; text-align: center; color: var(--text-muted); font-size: 12px; text-transform: none; -}` - ); -}); + +}`); +}) + diff --git a/utils/ArmCord.js b/utils/ArmCord.js index ce8ec2c..5dc6b99 100644 --- a/utils/ArmCord.js +++ b/utils/ArmCord.js @@ -1,3 +1,4 @@ + exports.Version = "2.4"; exports.addStyle = function (styleString) { @@ -11,3 +12,4 @@ exports.addScript = function (scriptString) { script.textContent = scriptString; document.body.append(script); }; +