DEV Community

GaNeShKuMaRm
GaNeShKuMaRm

Posted on • Originally published at codeburst.io

Bringing Dark Theme to Medium in Chrome

I remember myself running the same script in my Chrome Console. Thanks to Chrome Dev Tool Snippets, now you can save and run your favorite and frequently used code snippets on any site in Chrome. The good thing is that these snippets are aware of the Javascript Context of the page.

For this article, I wrote a script that will bring Dark Theme to Medium web.

Javascript Snippet for Medium Dark Theme

First, we add the above snippet in Chrome and see if it is working.

  1. Open Chrome Dev Tool by pressing Ctrl + Shift + Ins or Right-click and select Inspect.
    Open Dev Tools

  2. Click on the Sources Tab. You can see a list of options on the left like Page, Filesystem, Overrides, etc.
    Switch to Sources Tab

  3. Click the Β» button and select Snippets.
    Select Snippets Option

  4. Now click New snippet to add a snippet. Give a meaningful name to the snippet. I am giving mine darkTheme.
    Add New Snippet

  5. Now copy the below code from the gist and paste it in the editor. Now press Ctrl + S to save the changes
    Javascript Code for Dark Theme

  6. Open any medium article and open the snippet by following the above steps.

  7. Right-click on the snippet and select Run
    Run the snippet

  8. Voila, Now you can read Medium articles with Dark Theme.
    My [article ](https://medium.com/javarevisited/mos-algorithm-range-queries-made-easy-6c35047369ca)with and without Dark ThemeMy article with and without Dark Theme

Conclusion

And there you have it, your Medium in Dark Theme. Currently, Chrome doesn't have an option to run the script automatically but I hope we get the option in the future. Thank you for reading, I hope you found this article helpful!

Linkedin | Github

Top comments (0)