I have looked quite a bit and found (so many) tutorials/instructions on how to modify .css file in Jupyter/IPython by using static/custom/custom.css file.
My problem is the opposite: I would like to locate the default template that is used by notebook to use it as a template for another .css file.
More precisely : I am exporting my dataframe by using either panda's df.to_html() or df.style().render().
In both cases, when I open the resulting .html file in a browser, the dataframe looks a lot worse than it did when I preview it in my notebook. I am assuming that it is simply that Jupyter Notebook uses a stylesheet that my new html file does not know about.
Where is the default .css file?
Bonus points if you could tell me what is the name of this default theme, I feel like it would have made my search much easier.
I can't post a screenshot but will be happy to modify my question with more specific details if needed.