summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/lib/themes/gl_theme.js
blob: 439ae50448accbc335d9955bcd9aecf3b0e3801a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export default {
  themeName: 'gitlab',
  monacoTheme: {
    base: 'vs',
    inherit: true,
    rules: [],
    colors: {
      'editorLineNumber.foreground': '#CCCCCC',
      'diffEditor.insertedTextBackground': '#ddfbe6',
      'diffEditor.removedTextBackground': '#f9d7dc',
      'editor.selectionBackground': '#aad6f8',
      'editorIndentGuide.activeBackground': '#cccccc',
    },
  },
};