In my application, I have many Entry widgets. I would like to change the background color of the widget to make it obvious to the user that he or she have entered data in that widget and it has been captured by the application. This is easy with tk.Entry using the configure(background="color") command.
However, I have not figured out how to do it for ttk.Entry using styles. Suggestions very welcome.
After searching the web, I understood how to use styles to change the background color of all the ttk.Entry widgets in a form or frame. I could not find any information for doing that for a specific widget.

I have written a working script for it and you can find below it. Actually you should define 2 TTK styles (One for empty and another for filled states) and that styles should be changed with a callback function if the Entry widget (Basically the value of StringVariable object) is filled or it's empty. (I have written many comments in the test code for the better understanding.)
GUI: