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!

Splunk at Cisco Live 2025: Learning, Innovation, and a Little Bit of Mr. Brightside

Pack your bags (and maybe your dancing shoes)—Cisco Live is heading to San Diego, June 8–12, 2025, and Splunk ...

Splunk App Dev Community Updates – What’s New and What’s Next

Welcome to your go-to roundup of everything happening in the Splunk App Dev Community! Whether you're building ...

The Latest Cisco Integrations With Splunk Platform!

Join us for an exciting tech talk where we’ll explore the latest integrations in Cisco + Splunk! We’ve ...