set tick labels to white

This commit is contained in:
Kristjan Komlosi
2019-11-01 21:42:37 +01:00
parent 3a98bf0907
commit c98b42a6cd
2 changed files with 11 additions and 0 deletions

View File

@@ -26,6 +26,12 @@ function graphSpectralData (obj, dom) {
grid: {
color: 'white'
}
xaxis: {
color: 'white'
}
yaxis: {
color: 'white'
}
}
$.plot('#graph', [graphPoints], options);
// flot expects an array of arrays (lines) of 2-element arrays (points)

View File

@@ -59,6 +59,11 @@ body {
background-color: #8d0000;
color: white;
}
.table-secondary {
color: black;
}
.flot-tick-label {
color: white;
}