I am working on Teams power app.
I have a edit form. on the fill color property I am using this code to control the back ground color of the Form, the code is
If(ReturnSubForm.Mode = FormMode.Edit,Color.LightYellow,If(ReturnSubForm.Mode = FormMode.New,Color.LightBlue,Color.White))
Its shows the color as I want.
But the issue is that the textbox control colors get changed from white to grey color.
I want to the All text box control colors to remain white , No matter what mode the Edit Form is.
Is it possible?.
If yes, what code and what property to apply?.
Need to apply on each control separately?.
Please guide
Below image of New Form mode

Below image of edit form image
