Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « themes « lib « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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';