Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
Update themes
Browse files Browse the repository at this point in the history
Fixed an issue in `blockquote`
  • Loading branch information
Zabriskije authored Mar 29, 2023
1 parent 19d14d1 commit 8c6032b
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 10 deletions.
6 changes: 3 additions & 3 deletions github-dark-default.css
Original file line number Diff line number Diff line change
Expand Up @@ -564,14 +564,14 @@ blockquote .md-end-block.md-heading:before {
}

blockquote {
margin: 0 0 1.11111rem;
padding: .5rem 1.11111rem 0 1.05556rem;
margin: 0 0 1rem;
padding: 0 1rem;
border-left: .25rem solid #3b434b;
}

blockquote,
blockquote p {
line-height: 1.8;
line-height: 1.5;
color: #8b949e;
}

Expand Down
15 changes: 11 additions & 4 deletions github-dark-dimmed.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,24 @@
--mermaid-node-border: #bd7958;
--mermaid-contrast-color: #afe61d;
--mermaid-theme: dark;
--monospace: ui-monospace;
--monospace: ui-monospace,
Menlo, Monaco,
"Cascadia Mono", "Segoe UI Mono",
"Roboto Mono",
"Oxygen Mono",
"Ubuntu Monospace",
"Source Code Pro",
"Fira Mono",
"Droid Sans Mono",
"Courier New", monospace;
}

code {
background-color: #3b434d;
}

blockquote {
border-left-width: 4px !important;
border-left: .25em solid #444c56 !important;
padding: 0 1em;
border-left: .25rem solid #444c56 !important;
}

blockquote p {
Expand Down
14 changes: 11 additions & 3 deletions github-dark-high-contrast.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,16 @@
--mermaid-node-border: #bd7958;
--mermaid-contrast-color: #afe61d;
--mermaid-theme: dark;
--monospace: ui-monospace;
--monospace: ui-monospace,
Menlo, Monaco,
"Cascadia Mono", "Segoe UI Mono",
"Roboto Mono",
"Oxygen Mono",
"Ubuntu Monospace",
"Source Code Pro",
"Fira Mono",
"Droid Sans Mono",
"Courier New", monospace;
}

code {
Expand All @@ -46,8 +55,7 @@ code {
}

blockquote {
border-left: .25em solid #7a828e !important;
color: var(--text-color) !important;
border-left: .25rem solid #7a828e !important;
}

blockquote p {
Expand Down

0 comments on commit 8c6032b

Please sign in to comment.