From 991c6f68caa8d27204deee4600c51194f547171b Mon Sep 17 00:00:00 2001 From: ksjdragon Date: Mon, 9 May 2016 23:29:48 -0400 Subject: [PATCH] added outer drop shadow on atom --- atoms/js/atom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atoms/js/atom.js b/atoms/js/atom.js index e98f15e..ed61eb1 100644 --- a/atoms/js/atom.js +++ b/atoms/js/atom.js @@ -204,7 +204,7 @@ function getAtomDOM(atomNum, size) { circle.style.left = size*0.075; var bgColor = getColor(settings["displayTheme"],atomNum); circle.style.backgroundColor = bgColor; - circle.style.boxShadow = "inset 0 0 0 15px " + changeColor(bgColor,20) + ", inset 0 0 10px 30px " + changeColor(bgColor,-20); + circle.style.boxShadow = "inset 0 0 0 15px " + changeColor(bgColor,20) + ", inset 0 0 10px 30px " + changeColor(bgColor,-20) + ", 1px 4px 16px 6px #444"; var eyes = document.createElement("div"); eyes.style.display = "flex";