Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- add styles for hello-world, routing, generator
- hello-world not possible to style iframe
  • Loading branch information
chrisdel101 committed Apr 18, 2024
1 parent cd228d2 commit 22bfdab
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,24 @@ body.dark-mode .doc-box.doc-notice
color: var(--dark_text);
background: var(--main_dark_bg);
}
body.dark-mode h1 {
body.dark-mode h1,
body.dark-mode h3{
color: var(--dark_text);
}
body.dark-mode code {
color: var(--dark_text);
}
}
body.dark-mode em,
body.dark-mode strong {
color: var(--dark_text);
}

body.dark-mode pre {
background: var(--second_dark_bg);
}
body.dark-mode [class*="language-"] {
text-shadow: 0 1px var(--second_dark_bg);
}
body.dark-mode .token.operator {
background: inherit;
}

0 comments on commit 22bfdab

Please sign in to comment.