How can I change the background colour of Dashboard in 5.3.3

By default, we get white colour as a background of dashboard but I want grey colour as background how can I achieve the same

Kibana has no native way to apply your own styles. There are two ways to do it though:

  • You can customize the color by changing the values in the less/css of Kibana. This will require you to hunt down the affected style and associated color, change it, and then create a custom build of Kibana.
  • You can inject your style using a hack. This will require you to find the CSS selector of the element you want to change and then inject your own override stylesheet into the page. You will need to write a plugin with a hack (the template will make this pretty easy), which would contain and inject your custom stylesheet. Then you install your plugin into your Kibana instance.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.