I think you just need to move your oRev.Accept inside the If ... End If code.
Code:
Sub acceptChanges()
Dim oRev As Revision
For Each oRev In ActiveDocument.Revisions
If oRev.Type = wdRevisionInsert Then
oRev.Range.Font.Color = wdColorBlue
oRev.Accept
End If
Next
End Sub