From c98b42a6cd02420e46e7870fbf5fb86cfc266747 Mon Sep 17 00:00:00 2001 From: Kristjan Komlosi Date: Fri, 1 Nov 2019 21:42:37 +0100 Subject: [PATCH] set tick labels to white --- frontend/frontend.js | 6 ++++++ frontend/stylesheet.css | 5 +++++ 2 files changed, 11 insertions(+) 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; +}