Skip to content
Advertisement

Get Bootstrap’s current theme colors in Javascript

My objective is to create charts using chart.js using colors that match the current chosen Bootstrap 4 theme (there are multiple available for the site)

My current strategy is to have a badge of every color on the page:

JavaScript

and then use jQuery to pull the background colors into an array:

JavaScript

I can then give this array to chart.js to create a chart with the theme colors.

Is there a better way to get the current theme colors from the CSS using Javascript? Or is there no way without creating a DOM element and testing it’s background color?

If there is an easy way to get CSS rules using Javascript without dealing with a DOM element, that’d be great.

Advertisement

Answer

Bootstrap stores its themed colors also inside CSS variables on the :root element.

A more appropriate way would be to extract these colors using getComputedStyle() and getPropertyValue('--variable')

JavaScript
JavaScript

Now you can get these use these colors with JavaScript or jQuery as follow

JavaScript

For bootstrap 5

Bootstrap 5 renamed it properties, to use above code with Bootstrap 5 see example below

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement