aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/logo-color.d/script.js
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2023-05-26 11:55:08 +0200
committerGravatar Christian Hesse <mail@eworm.de>2023-05-26 11:57:18 +0200
commit8dc047510824654cd236357b2eaedd21c06e96d1 (patch)
tree0b5a958ead21e91d46a5f1df610757b888afe63e /contrib/logo-color.d/script.js
parent51a7453e6c8acd17b9cbdac7fda278d915501197 (diff)
contrib/logo-color: support settings the background
Diffstat (limited to 'contrib/logo-color.d/script.js')
-rw-r--r--contrib/logo-color.d/script.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/logo-color.d/script.js b/contrib/logo-color.d/script.js
index ac89905..82cc204 100644
--- a/contrib/logo-color.d/script.js
+++ b/contrib/logo-color.d/script.js
@@ -1,5 +1,12 @@
+function invertHex(hex) {
+ return (Number("0x1" + hex) ^ 0xffffff).toString(16).substr(1);
+}
+
function color() {
var svg = document.querySelector(".logo").getSVGDocument();
svg.getElementById("dark-1").setAttribute("stop-color", document.getElementById("color1").value);
svg.getElementById("dark-2").setAttribute("stop-color", document.getElementById("color2").value);
+ var background = document.getElementById("color3").value;
+ svg.getElementById("background").setAttribute("fill", background);
+ svg.getElementById("hexagon").setAttribute("stroke", "#" + invertHex(background.substring(1)));
}