Another select2 darkish theme
DEMO
https://fredtux.github.io/select2-adsht/
Installation
NPM
Install the package
npm install select2-adsht
Laravel
Include the css file in your app.scss file
// select2-adsht theme
@import 'select2-adsht/dist/select2-adsht.min.css';
Directly
Include the css file in your html file
<link rel="stylesheet" type="text/css" href="dist/select2-adsht.min.css">
Usage
Specify the theme in your select2 options
$(document).ready(function() {
$('.select2-dark').select2({
theme: 'select2-adsht'
});
});