Skip to content

Commit

Permalink
Merge pull request #1319 from peterbecich/fix-quote-color
Browse files Browse the repository at this point in the history
fix quote color
  • Loading branch information
peterbecich authored Jun 22, 2024
2 parents 6dbd9ed + bc548b5 commit 4d5aebe
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions datafiles/static/hackage.css
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,21 @@ pre + pre {
margin-top: 0.5em;
}

@media (prefers-color-scheme: dark) {
blockquote {
border-left: 3px solid #2f2842;
background-color: #4c4771;
}
}

@media (prefers-color-scheme: light) {
blockquote {
border-left: 3px solid #c7a5d3;
background-color: #eee4f1;
}
}

blockquote {
border-left: 3px solid #c7a5d3;
background-color: #eee4f1;
margin: 0.5em;
padding: 0.0005em 0.3em 0.5em 0.5em;
}
Expand Down

0 comments on commit 4d5aebe

Please sign in to comment.