summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/lib/themes/index.js
blob: 6ed9f6679a4ba114f64c3980a86e085427ac8bff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import white from './white';
import dark from './dark';

export const themes = [
  {
    name: 'white',
    data: white,
  },
  {
    name: 'dark',
    data: dark,
  },
];

export const DEFAULT_THEME = 'white';