Presentation.global.scss 241 B

12345678910111213
  1. :root[data-bs-theme='light'] {
  2. .reveal-viewport {
  3. // adjust marp default theme
  4. background-color: #fff;
  5. }
  6. }
  7. :root[data-bs-theme='dark'] {
  8. .reveal-viewport {
  9. // adjust marp default theme
  10. background-color: #0d1117;
  11. }
  12. }