Dashboards & Visualizations

Is there any way to apply the dark theme dashboards per user?

TonyLeeVT
Builder

We have some users who want to use the 7.2 dark theme dashboards and then some who do not.

Does anyone know of a method to allow users to specify the theme as part of their user preferences (similar to the SPL Editor theme preference)?

We realize that we can add "theme=dark" to every URL, but that can be rather annoying for the users.

efavreau
Motivator

Provide your users with bookmarklets, which allow them - with a button click from the browser bookmark bar, to change the mode:

Change to Light Mode

javascript:void((function(){var loc = location.href; if (loc.indexOf('theme') >= 0) return; loc.indexOf("?") < 0 ? (location.href = loc+"?&theme=light") : (location.href = loc+"&theme=light");})());

Change to Dark Mode

javascript:void((function(){var loc = location.href; if (loc.indexOf('theme') >= 0) return; loc.indexOf("?") < 0 ? (location.href = loc+"?&theme=dark") : (location.href = loc+"&theme=dark");})());

I can't make these hyperlink bookmarklets here in Splunk Answers, so you would need to provide it to your users, rather than point them to this question.

If you or your users aren't familiar with bookmarklets, they click and drag the bookmark link to their bookmark bar. Then click it when they want it to perform something. More details here: https://en.wikipedia.org/wiki/Bookmarklet

###

If this reply helps you, an upvote would be appreciated.

douglasmsouza
Explorer

I'm having the same problem here... Did you manage to solve it?

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...