Skip to content

Commit

Permalink
refactor(v2): add support for dark mode to live code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
lex111 committed May 17, 2020
1 parent 463efec commit 963bc2c
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
}

.playgroundEditorHeader {
background: rgb(32, 35, 42);
color: #999;
background: var(--ifm-color-emphasis-600);
color: var(--ifm-color-content-inverse);
}

.playgroundPreviewHeader {
background: rgb(236, 236, 236);
color: rgb(109, 109, 109);
background: var(--ifm-color-emphasis-200);
color: var(--ifm-color-content);
}

.playgroundPreview {
border: 1px solid #f0f0f0;
border: 1px solid var(--ifm-color-emphasis-200);
border-bottom-left-radius: var(--ifm-global-radius);
border-bottom-right-radius: var(--ifm-global-radius);
position: relative;
Expand Down

0 comments on commit 963bc2c

Please sign in to comment.