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

gl_theme.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: 2fc96250c7dbfa15d2ea24f95ca8bc97e2eadf35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export default {
  themeName: 'gitlab',
  monacoTheme: {
    base: 'vs',
    inherit: true,
    rules: [],
    colors: {
      'editorLineNumber.foreground': '#CCCCCC',
      'diffEditor.insertedTextBackground': '#ddfbe6',
      'diffEditor.removedTextBackground': '#f9d7dc',
      'editor.selectionBackground': '#aad6f8',
    },
  },
};