Does the following do what you need?

Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Column = 6 And (25 <= Target.Row <= 225) Then
        Target.Interior.ColorIndex = 38
    End If
End Sub
hth
Ajay