diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-26 12:47:30 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-26 12:47:30 -0500 |
| commit | 7860cd1190fdbfc1a0c4b48d17e439837d1fb598 (patch) | |
| tree | 3724e3b84aadaa9a19ce608eb681e9e008fac04e | |
| parent | c5023e65d43f8dd034b0326639de86462c1d8acf (diff) | |
| download | dotemacs-7860cd1190fdbfc1a0c4b48d17e439837d1fb598.tar.gz dotemacs-7860cd1190fdbfc1a0c4b48d17e439837d1fb598.zip | |
fix(dupre): flush org src-block delimiter lines with the background
org-block-begin-line and org-block-end-line carried a bg+1 (#252321) background, so the #+begin_src and #+end_src lines showed a lighter box that matched neither the block body nor the normal background. I pointed both at the theme background so the delimiter lines sit flush, keeping their gray foreground.
| -rw-r--r-- | themes/dupre-faces.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/dupre-faces.el b/themes/dupre-faces.el index 991cc1a59..3fe14c9aa 100644 --- a/themes/dupre-faces.el +++ b/themes/dupre-faces.el @@ -252,8 +252,8 @@ `(org-code ((t (:foreground ,green :background ,bg+1)))) `(org-verbatim ((t (:foreground ,gray+1 :background ,bg+1)))) `(org-block ((t (:background ,bg+0 :extend t)))) - `(org-block-begin-line ((t (:foreground ,gray :background ,bg+1 :extend t)))) - `(org-block-end-line ((t (:foreground ,gray :background ,bg+1 :extend t)))) + `(org-block-begin-line ((t (:foreground ,gray :background ,bg :extend t)))) + `(org-block-end-line ((t (:foreground ,gray :background ,bg :extend t)))) `(org-meta-line ((t (:foreground ,gray)))) `(org-document-title ((t (:foreground ,yellow :weight bold :height 1.4)))) `(org-document-info ((t (:foreground ,gray+1)))) |
