Skip to content
Snippets Groups Projects
Commit da6a730c authored by stuebinm's avatar stuebinm
Browse files

divoc: dark mode for svg exit graph

parent 586c7ef5
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,50 @@ a {
#exitGraph {
width: 100%;
height: 15em;
height: 20em;
overflow: hidden;
background-color: white;
border-radius: 0.5em;
margin-bottom: 0.5em;
}
svg {
overflow: visible !important;
fill: black;
}
svg > g > polygon {
stroke: none !important;
}
ellipse, polygon, path {
stroke: black;
}
ellipse {
fill: white;
}
@media (prefers-color-scheme: dark) {
svg {
overflow: visible !important;
fill: white;
}
svg > g > polygon {
stroke: none !important;
fill: black
}
ellipse {
fill: black;
}
ellipse, polygon, path {
stroke: #a74db7;
}
polygon {
fill: #a74db7;
}
#exitGraph {
background-color: black;
}
}
h1,h2,h3 {
......@@ -67,7 +110,7 @@ h4{
}
.text-muted {
color: #222 !important;
color: #9945c5 !important;
}
@media (prefers-color-scheme: dark) {
......@@ -80,6 +123,9 @@ h4{
}
.text-muted {
color: #a74db7 !important;
color: #fdbe4b !important;
}
h4 {
color: #ffebd8;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment