diff --git a/frontend/frontend.js b/frontend/frontend.js index f1ee5f7..c01bd18 100644 --- a/frontend/frontend.js +++ b/frontend/frontend.js @@ -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) diff --git a/frontend/stylesheet.css b/frontend/stylesheet.css index 9cbb102..a42367f 100644 --- a/frontend/stylesheet.css +++ b/frontend/stylesheet.css @@ -59,6 +59,11 @@ body { background-color: #8d0000; color: white; } + .table-secondary { color: black; } + +.flot-tick-label { + color: white; +}