summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/lib/themes/gl_theme.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/ide/lib/themes/gl_theme.js')
-rw-r--r--app/assets/javascripts/ide/lib/themes/gl_theme.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/assets/javascripts/ide/lib/themes/gl_theme.js b/app/assets/javascripts/ide/lib/themes/gl_theme.js
new file mode 100644
index 00000000000..2fc96250c7d
--- /dev/null
+++ b/app/assets/javascripts/ide/lib/themes/gl_theme.js
@@ -0,0 +1,14 @@
+export default {
+ themeName: 'gitlab',
+ monacoTheme: {
+ base: 'vs',
+ inherit: true,
+ rules: [],
+ colors: {
+ 'editorLineNumber.foreground': '#CCCCCC',
+ 'diffEditor.insertedTextBackground': '#ddfbe6',
+ 'diffEditor.removedTextBackground': '#f9d7dc',
+ 'editor.selectionBackground': '#aad6f8',
+ },
+ },
+};