How to change chunk output background in revealjs presentation? #2592
Answered
by
LukaszDerylo
LukaszDerylo
asked this question in
Q&A
-
Just like in title: I'd like to change code chunk output background. I managed to change chunk clock background color with $code-block-bg variable in my custom .scss file but stucked with similar change to output background. Currently my slides look like this: |
Beta Was this translation helpful? Give feedback.
Answered by
LukaszDerylo
Sep 26, 2022
Replies: 1 comment
-
These few lines input in .scss do the thing: div.cell-output pre code { |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
LukaszDerylo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
These few lines input in .scss do the thing:
div.cell-output pre code {
background-color: #123456;
}