org-reveal
org-reveal copied to clipboard
Font color in tables
When using a dark theme, the letters of any exported table remain black. My configuration is the following:
#+OPTIONS: num:nil toc:nil date:nil timestamp:nil
:REVEAL_PROPERTIES:
#+REVEAL_ROOT: https://cdn.jsdelivr.net/npm/reveal.js
#+REVEAL_REVEAL_JS_VERSION: 4
#+REVEAL_INIT_OPTIONS: slideNumber:false, center:true
#+REVEAL_THEME: black
#+REVEAL_PLUGINS: (highlight)
:END:
Any hints? Thanks in advance.
I tried the following org
#+TITLE: Dark Theme
#+OPTIONS: num:nil toc:nil date:nil timestamp:nil
#+REVEAL_ROOT: https://cdn.jsdelivr.net/npm/reveal.js
#+REVEAL_REVEAL_JS_VERSION: 4
#+REVEAL_INIT_OPTIONS: slideNumber:false, center:true
#+REVEAL_THEME: black
#+REVEAL_PLUGINS: (highlight)
* Example Slide
| ABCD | EFGH |
|------+------|
| 123 | 456 |
And the exported slides are like:
I also tried your example and the problem persists. The versions I use:
Org mode version 9.5.4
GNU Emacs 29.0.50
I install org-reveal with straight.el, so I assume I am on the latest version.
I see. Could you please show me the content of the exported HTML?