JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; max-width: 400px; height: 300px; margin: 0 auto"></div>
<div id="container2" style="min-width: 310px; max-width: 400px; height: 300px; margin: 0 auto"></div>

JavaScript

$(function () {
	
    $('#container').highcharts({
	    chart: {
	        type: 'gauge'
	    },
	    pane: {
	        background: [{
	            backgroundColor: '#FB0000',
	        }]
	    },
	    yAxis: {
	        min: 0,
	        max: 200,
	    },
	    series: [{
	        name: 'Speed',
	        data: [80],
	        tooltip: {
	            valueSuffix: ' km/h'
	        }
	    }]
	});
    
    $('#container2').highcharts({
	    chart: {
	        type: 'gauge'
	    },
	    pane: {
	        background: [{
	            backgroundColor: 'white',
	        }]
	    },
	    yAxis: {
	        min: 0,
	        max: 200,
	    },
	    series: [{
	        name: 'Speed',
	        data: [80],
	        tooltip: {
	            valueSuffix: ' km/h'
	        }
	    }]
	});
});