Skip to content

Commit

Permalink
embedded style for dark mode diagrams
Browse files Browse the repository at this point in the history
  • Loading branch information
metazool committed Jul 16, 2024
1 parent 5b8e25e commit 9fef7d3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/diagrams/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ layout: home
title: Plankton ML - workflow diagrams
---

<!-- workaround to make diagrams responsive to dark mode -->
<style type="text/css">
svg { fill: currentColor }

path {
fill: black;
}

@media (prefers-color-scheme: dark) {
path { fill: white; }
}
</style>

# Workflow Diagrams


Expand Down

0 comments on commit 9fef7d3

Please sign in to comment.