Ask Your Question
2

What is the method to achieve two code colors in revealjs?

asked 2023-06-05 14:45:24 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-06-05 15:14:02 +0000

ladyg gravatar image

To achieve two code colors in RevealJS, you can use the following method:

  1. Wrap the code block in a div container with a specific class.
  2. Apply one color to the text inside the code block.
  3. Apply the other color to the background of the container.

Here is an example code snippet:

<div class="my-code-block">
  <pre><code class="language-javascript">
    // Your code here
  </code></pre>
</div>

<style>
.my-code-block {
  background-color: #f2f2f2; /* Set the background color */
  padding: 10px;
}

.my-code-block code {
  color: #333; /* Set the text color */
}
</style>

In the example above, .my-code-block is the container class, #f2f2f2 is the background color, and #333 is the text color. You can replace these values with your preferred colors.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-05 14:45:24 +0000

Seen: 8 times

Last updated: Jun 05 '23