Skip to content

Commit 37c1261

Browse files
committed
refactor: use rgba vals with opacity to ruler lines to make it less distracting
1 parent ec2ae2c commit 37c1261

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LiveDevelopment/BrowserScripts/RemoteFunctions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4005,8 +4005,8 @@ function RemoteFunctions(config = {}) {
40054005
};
40064006
// gray color for non-editable elements, blue for editable
40074007
this.color = element.hasAttribute("data-brackets-id")
4008-
? "#4285F4"
4009-
: "#3C3F41";
4008+
? "rgba(66, 133, 244, 0.4)"
4009+
: "rgba(60, 63, 65, 0.8)";
40104010
this.create();
40114011
this.update();
40124012
}

0 commit comments

Comments
 (0)