From e3eac82ba191928dfdb9427a40de44e67e5c3bd0 Mon Sep 17 00:00:00 2001 From: Hyunbin Seo <47051820+hyunbinseo@users.noreply.github.com> Date: Tue, 21 Oct 2025 00:39:23 +0900 Subject: [PATCH] docs: mention dark bg color --- readme.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/readme.md b/readme.md index 9a44ef4..6d1b895 100644 --- a/readme.md +++ b/readme.md @@ -37,6 +37,12 @@ Import the `github-markdown.css` file and add a `markdown-body` class to the con padding: 15px; } } + + @media (prefers-color-scheme: dark) { + body { + background-color: #0d1117; + } + }

Unicorns