# One Light and One Dark Themes for Ace Editor

Based on [vscode-beautiful-ui](https://github.com/swashata/vscode-beautiful-ui) by
[Swashata Ghosh](https://github.com/swashata).

## Install

```
$ npm install --save ace-one-themes
# or
$ yarn add ace-one-themes
```

## Usage

```
// Import
require('ace-one-themes');
// or
import 'ace-one-themes';

// Set Theme
editor.setTheme('ace/theme/one-light');
editor.setTheme('ace/theme/one-dark');
```
