<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
Not sure if this has come up before but I thought other people might
find it useful. I wanted the aerial imagery in JOSM to be slightly
faded like potlatch, makes it much easier to see the ways.<br>
<br>
To do it just edit [profile]Application Data\JOSM\plugins\ywms\ymap.html<br>
<br>
after the body i added:<br>
<div id="overlay" style="position:absolute;top:0;left:0;background:<b>white</b>;opacity:<b>0.5</b>;z-index:10;"></div><br>
<br>
and after about line 90 add:<br>
          var overlayDiv = document.getElementById("overlay");<br>
          overlayDiv.style.width  = new_width;<br>
          overlayDiv.style.height = new_height;<br>
<br>
you can of course tweak the colour and opacity in that bit of css<br>
<br>
</body>
</html>