An open API service indexing awesome lists of open source software.

https://github.com/fredtux/select2-adsht

Another select2 darkish theme
https://github.com/fredtux/select2-adsht

css scss select2 theme

Last synced: 6 days ago
JSON representation

Another select2 darkish theme

Awesome Lists containing this project

README

        

# Another select2 darkish theme

![Screenshot](./Screenshot.png)

## DEMO

[https://fredtux.github.io/select2-adsht/](https://fredtux.github.io/select2-adsht/)

## Installation

### NPM
Install the [package](https://www.npmjs.com/package/select2-adsht)

```bash
npm install select2-adsht
```

### Laravel
Include the css file in your **app.scss** file

```scss
// select2-adsht theme
@import 'select2-adsht/dist/select2-adsht.min.css';
```

### Directly
Include the css file in your html file

```html

```

## Usage

Specify the theme in your select2 options

```js
$(document).ready(function() {
$('.select2-dark').select2({
theme: 'select2-adsht'
});
});
```