2021-12-08 18:09:13 -08:00
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
svg .graph > polygon {
|
2021-12-09 04:32:38 -08:00
|
|
|
/* Material dark theme surface colour */
|
|
|
|
fill: #121212;
|
2021-12-08 18:09:13 -08:00
|
|
|
}
|
|
|
|
svg .node polygon {
|
|
|
|
stroke: #c9d1d9;
|
|
|
|
}
|
|
|
|
svg .node.open polygon {
|
2021-12-09 04:32:38 -08:00
|
|
|
/* Material Green 700 */
|
|
|
|
fill: #388e3c;
|
2021-12-08 18:09:13 -08:00
|
|
|
}
|
|
|
|
svg .node.committed polygon {
|
2021-12-09 04:32:38 -08:00
|
|
|
/* Material Blue 700 */
|
|
|
|
fill: #1976d2;
|
2021-12-08 18:09:13 -08:00
|
|
|
}
|
|
|
|
svg .node.closed polygon {
|
2021-12-09 04:32:38 -08:00
|
|
|
fill: #cf6b66;
|
2021-12-08 18:09:13 -08:00
|
|
|
}
|
|
|
|
svg .node polyline {
|
|
|
|
stroke: #c9d1d9;
|
|
|
|
}
|
|
|
|
svg .edge path {
|
|
|
|
stroke: #c9d1d9;
|
|
|
|
}
|
|
|
|
svg .edge polygon {
|
|
|
|
fill: #c9d1d9;
|
|
|
|
stroke: #c9d1d9;
|
|
|
|
}
|
|
|
|
svg text {
|
2021-12-08 18:16:49 -08:00
|
|
|
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
|
2021-12-08 18:09:13 -08:00
|
|
|
}
|
|
|
|
}
|