Merge pull request #18 from barrett-ruth/fix/code-block-style-dark-mode

fix code block style dark mode
This commit is contained in:
Barrett Ruth 2025-11-30 02:04:37 -05:00 committed by GitHub
commit 804ef0e997
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -154,8 +154,8 @@
:root {
--bg: #000;
--text: #fff;
--code-bg: #0a0a0a;
--border: #1a1a1a;
--code-bg: #121212;
--border: #2d2d2d;
--grid-color: rgba(55, 55, 55, 0.4);
}
}
@ -171,8 +171,8 @@
[data-theme="dark"] {
--bg: #000;
--text: #fff;
--code-bg: #0a0a0a;
--border: #1a1a1a;
--code-bg: #121212;
--border: #2d2d2d;
--grid-color: rgba(55, 55, 55, 0.4);
}