You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.2 KiB

  1. /* dark mode styles */
  2. .theme--dark .tui-editor-contents h1 {
  3. color: #fff; /* inversion of #000 */
  4. }
  5. .theme--dark .tui-editor-contents h2,
  6. .theme--dark .tui-editor-contents h3,
  7. .theme--dark .tui-editor-contents h4,
  8. .theme--dark .tui-editor-contents h5,
  9. .theme--dark .tui-editor-contents h6,
  10. .theme--dark .tui-editor-contents code span {
  11. color: #ccc; /* inversion of #333 */
  12. }
  13. .theme--dark .tui-editor-contents blockquote {
  14. color: #888; /* inversion of #777777 */
  15. }
  16. .theme--dark .tui-editor-contents ul,
  17. .theme--dark .tui-editor-contents menu,
  18. .theme--dark .tui-editor-contents ol,
  19. .theme--dark .tui-editor-contents dir,
  20. .theme--dark .tui-editor-contents p,
  21. .theme--dark .tui-editor-contents table {
  22. color: #aaa; /* inversion of #555555 */
  23. }
  24. .theme--dark .tui-editor-contents table td {
  25. border: #151515; /* inversion of #eaeaea */
  26. }
  27. .theme--dark .tui-editor-contents table th {
  28. border: #8d8884; /* inversion of #72777b */
  29. background-color: #847e7b; /* inversion of #7b8184 */
  30. }
  31. .theme--dark .tui-editor-contents pre {
  32. background-color: #0a0807; /* inversion of #f5f7f8 */
  33. }
  34. .theme--dark .tui-editor-contents code {
  35. color: #3e8774; /* inversion of #c1788b */
  36. }