Dashboards & Visualizations

Changing Text Colour In a Dashboard

itsomana
Path Finder

I have a traffic light dashboard configured and was wondering if you can change the white text in the green traffic light box to black. If so could some advise as to how I would go about doing it.

Tags (1)
1 Solution

Drainy
Champion

Splunk uses a CSS file to define what colour things appear.
So for example the default one is located in;
$SPLUNK_HOME/share/splunk/search_mrsparkle/exposed/css/skins/default/

If you are working on an app you can copy and paste the application.css file to your etc/apps/APPNAME/appserver/static/ folder to override the default settings.
Of interest is the part;

.SingleValue .severe {
       background-color: #bb2121;
       color: #fff;
}
.SingleValue .high {
       background-color: #e67918;
       color: #fff;
}

This defines the background colour of the different colours. if you wanted you could copy and paste one of those and create your own, maybe called it .SingleValue .reallyBad { and then you just need to use the term reallyBad in place of low, severe etc in your rangemap command. You can then also define your own custom colours but also use the existing ones!

Just some important points, ensure Splunk has access to the file if you copy it over or move it as an admin/root user.
For more detail visit this link for a full breakdown;
http://docs.splunk.com/Documentation/Splunk/latest/Developer/UseCSS

View solution in original post

Drainy
Champion

Also, don't forget to accept answers on questions you've asked in the past if they have solved a problem (by clicking on the tick on the left of the answer)
This just encourages more people to help you out and also makes the website a useful database of knowledge by identifying answers that have helped 🙂

Drainy
Champion

Splunk uses a CSS file to define what colour things appear.
So for example the default one is located in;
$SPLUNK_HOME/share/splunk/search_mrsparkle/exposed/css/skins/default/

If you are working on an app you can copy and paste the application.css file to your etc/apps/APPNAME/appserver/static/ folder to override the default settings.
Of interest is the part;

.SingleValue .severe {
       background-color: #bb2121;
       color: #fff;
}
.SingleValue .high {
       background-color: #e67918;
       color: #fff;
}

This defines the background colour of the different colours. if you wanted you could copy and paste one of those and create your own, maybe called it .SingleValue .reallyBad { and then you just need to use the term reallyBad in place of low, severe etc in your rangemap command. You can then also define your own custom colours but also use the existing ones!

Just some important points, ensure Splunk has access to the file if you copy it over or move it as an admin/root user.
For more detail visit this link for a full breakdown;
http://docs.splunk.com/Documentation/Splunk/latest/Developer/UseCSS

Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...