Do you want it reverted automatically or by running the macro again?

If running the macro a second time is fine, simply add this:
Sub EF974522_find()
    Dim c, f As Range
    
    Sheets("Sheet2").Columns(1).Interior.Pattern = xlNone
    For Each c In Sheets("Sheet2").Range("A1", Sheets("Sheet2").Range("A" & rows.Count).End(xlUp))
        Set f = Sheets("Sheet1").Columns(3).Find(c.Value, lookat:=xlWhole)
        If Not f Is Nothing Then c.Interior.Color = 255
    Next
End Sub