Built a web application named HARM Bot, which is Educational YouTube Analysis

Hi Streamlit community! :waving_hand:

I built HARM Bot, a machine-learning app that analyzes YouTube videos, channels, and playlists to identify educational content. It also classifies topics, analyzes transcripts, and generates structured learning paths.

I’d love your feedback!

:link: View my app
:laptop: GitHub repository

this is genuinely really cool to me Harshul
How did u get to change the colour of your app from the standard dark blue to maroons and pink
am kinda new on streamlit

Thank you for having a look at my project, and glad you found it cool and interesting.

In order to add the custom colors/styling, I used CSS code in the streamlit.

So while viewing your streamlit app on a web browser, you can inspect and look for the elements you want to style and find the class names or the data-testid attribute of those and apply the CSS styling in the HTML code snippets in your streamlit application.

Here is a quick overview of how you can do it.

This is just the web overview though, is not a permanent application, so you have to use HTML code with <style> tags in your streamlit app to add it permanently.

Streamlit - Applying CSS Styling