A trick I use in similar situations is to generate three random intensity values, then use these three values in six possible RGB combinations to generate a palette of colors having constant intensity and uniform contrast.
Example using three intensity values 33, 88, and aa.
<div style='background-color: #3388aa;'>Color 1</div>
<div style='background-color: #33aa88;'>Color 2</div>
<div style='background-color: #aa8833;'>Color 3</div>
<div style='background-color: #aa3388;'>Color 4</div>
<div style='background-color: #8833aa;'>Color 5</div>
<div style='background-color: #88aa33;'>Color 6</div>