[Bugfix] Fix the night-time colour

This commit is contained in:
Gergely Polonkai 2022-05-18 17:13:43 +02:00
parent ed81334a20
commit 534bf3a899
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4

View File

@ -210,7 +210,7 @@ fn gen_svg() -> Document {
#border {stroke: none; fill: rgb(19, 17, 30); } #border {stroke: none; fill: rgb(19, 17, 30); }
.hour text.utc {stroke: none; fill: rgb(91, 68, 38);} .hour text.utc {stroke: none; fill: rgb(91, 68, 38);}
.local-hour {stroke: none; fill: rgb(238, 187, 85);} .local-hour {stroke: none; fill: rgb(238, 187, 85);}
.night-time {stroke: none; fill: 19, 17, 30);} .night-time {stroke: none; fill: rgb(19, 17, 30);}
.blue-hour {stroke: none; fill: rgb(9, 1, 119);} .blue-hour {stroke: none; fill: rgb(9, 1, 119);}
.golden-hour {stroke: none; fill: rgb(170, 132, 44);} .golden-hour {stroke: none; fill: rgb(170, 132, 44);}
.day-time {stroke: none; fill: rgb(125, 197, 240);} .day-time {stroke: none; fill: rgb(125, 197, 240);}