Help returning the active brush while in "Texture Paint" mode

Anyone know how I would reference the currently selected brush to change its settings?

For instance this:

bpy.data.brushes[“Draw”].color = (1, 1, 1)

will set the “Draw” brush to the color white. But what if I don’t want to change the property of a specifically named brush but of the active brush. Basicly, how would I do this:

bpy.data.ActiveBrush.color = (1,1,1)

bpy.context.tool_settings.image_paint.brush.color = (1,1,1)

Thanks. Works perfect. Much appreciated.