//Overrides hyperlink styletemplate:
for i := 1 to rve.Style.TextStyles.Count-1 do
begin
if rve.Style.TextStyles[i].Jump then
begin
//rve.Style.TextStyles[i].FontName := rve.Style.TextStyles[0].FontName;
//rve.Style.TextStyles[i].Size := rve.Style.TextStyles[0].Size;
rve.Style.TextStyles[i].Color := rve.Style.TextStyles[0].Color;
rve.Style.TextStyles[i].UnderlineColor := clAqua;
end;
end;
That works to "force" the hyperlink text colors to be what I want them to be. But sure seems that this: