From d8674b5ebf2880981a38a4eeedd0f0379b25b553 Mon Sep 17 00:00:00 2001
From: Daniel Smith <rdnlsmith@gmail.com>
Date: Sat, 9 Feb 2019 15:55:32 -0500
Subject: Yaru Dark: Rename from Yaru

---
 themes/src/dark/yaru-dark.ts | 87 ++++++++++++++++++++++++++++++++++++++++++++
 themes/src/dark/yaru.ts      | 87 --------------------------------------------
 2 files changed, 87 insertions(+), 87 deletions(-)
 create mode 100644 themes/src/dark/yaru-dark.ts
 delete mode 100644 themes/src/dark/yaru.ts

(limited to 'themes/src')

diff --git a/themes/src/dark/yaru-dark.ts b/themes/src/dark/yaru-dark.ts
new file mode 100644
index 0000000..187f24a
--- /dev/null
+++ b/themes/src/dark/yaru-dark.ts
@@ -0,0 +1,87 @@
+import * as path from 'path';
+import { generateTheme, IColorSet } from 'vscode-theme-generator';
+
+const themeName = 'Yaru Dark';
+const colors = {
+  white: '#FFFFFF',
+  cyan: '#55ffff',
+  red: '#FF5555',
+  green: '#55ff55',
+  ubuntuOrange: '#e95420',
+  lightAubergine: '#bb90b7',
+  midAubergine: '#5e2750',
+  darkAubergine: '#300a24',
+  titleBarGray: '#2b2929',
+  inactiveTitleBarGray: '#3d3a3a',
+  menuGray: '#494949',
+  bodyGray: '#383838',
+  editorGray: '#2f2f2f',
+  sideBarGray: '#3f3f3f',
+  highlightGray: '#575757',
+  commentGray: '#a8a8a8',
+}
+
+const colorSet: IColorSet = {
+  base: {
+    background: colors.bodyGray,
+    foreground: colors.white,
+    color1: colors.ubuntuOrange,
+    color2: colors.red,
+    color3: colors.green,
+    color4: colors.cyan
+  },
+  syntax: {
+    comment: colors.commentGray,
+    keyword: colors.lightAubergine,
+    markdownQuote: colors.commentGray,
+  },
+  terminal: {
+    black: '#000000',
+    red: '#aa0000',
+    green: '#00aa00',
+    yellow: '#aa5500',
+    blue: '#0000aa',
+    magenta: '#aa00aa',
+    cyan: '#00aaaa',
+    white: '#aaaaaa',
+    brightBlack: '#555555',
+    brightRed: '#ff5555',
+    brightGreen: '#55ff55',
+    brightYellow: '#ffff55',
+    brightBlue: '#5555ff',
+    brightMagenta: '#ff55ff',
+    brightCyan: '#55ffff',
+    brightWhite: '#ffffff',
+  },
+  ui: {
+    selection: colors.midAubergine
+  },
+  overrides: {
+    'activityBar.background': colors.highlightGray,
+    'editor.background': colors.editorGray,
+    'editorGroupHeader.tabsBackground': colors.bodyGray,
+    'list.activeSelectionBackground': colors.ubuntuOrange,
+    'list.hoverBackground': colors.highlightGray,
+    'list.inactiveSelectionBackground': colors.highlightGray,
+    'menu.background': colors.menuGray,
+    'menu.selectionBackground': colors.highlightGray,
+    'menubar.selectionBackground': colors.menuGray,
+    'panel.background': colors.bodyGray,
+    'sideBar.background': colors.sideBarGray,
+    'sideBarSectionHeader.background': colors.highlightGray,
+    'statusBar.background': colors.editorGray,
+    'tab.inactiveBackground': colors.bodyGray,
+    'tab.unfocusedInactiveBackground': colors.bodyGray,
+    'terminal.background': colors.darkAubergine,
+    'titleBar.activeBackground': colors.titleBarGray,
+    'titleBar.inactiveBackground': colors.inactiveTitleBarGray,
+  }
+};
+
+var fileName = themeName
+  .toLowerCase()
+  .replace(/\[\w*\]/, '')
+  .trim()
+  .replace(/\s+/, '-') + '.json';
+
+generateTheme(themeName, colorSet, path.join(__dirname, fileName));
\ No newline at end of file
diff --git a/themes/src/dark/yaru.ts b/themes/src/dark/yaru.ts
deleted file mode 100644
index c34fac5..0000000
--- a/themes/src/dark/yaru.ts
+++ /dev/null
@@ -1,87 +0,0 @@
-import * as path from 'path';
-import { generateTheme, IColorSet } from 'vscode-theme-generator';
-
-const themeName = 'Yaru [beta]';
-const colors = {
-  white: '#FFFFFF',
-  cyan: '#55ffff',
-  red: '#FF5555',
-  green: '#55ff55',
-  ubuntuOrange: '#e95420',
-  lightAubergine: '#bb90b7',
-  midAubergine: '#5e2750',
-  darkAubergine: '#300a24',
-  titleBarGray: '#2b2929',
-  inactiveTitleBarGray: '#3d3a3a',
-  menuGray: '#494949',
-  bodyGray: '#383838',
-  editorGray: '#2f2f2f',
-  sideBarGray: '#3f3f3f',
-  highlightGray: '#575757',
-  commentGray: '#a8a8a8',
-}
-
-const colorSet: IColorSet = {
-  base: {
-    background: colors.bodyGray,
-    foreground: colors.white,
-    color1: colors.ubuntuOrange,
-    color2: colors.red,
-    color3: colors.green,
-    color4: colors.cyan
-  },
-  syntax: {
-    comment: colors.commentGray,
-    keyword: colors.lightAubergine,
-    markdownQuote: colors.commentGray,
-  },
-  terminal: {
-    black: '#000000',
-    red: '#aa0000',
-    green: '#00aa00',
-    yellow: '#aa5500',
-    blue: '#0000aa',
-    magenta: '#aa00aa',
-    cyan: '#00aaaa',
-    white: '#aaaaaa',
-    brightBlack: '#555555',
-    brightRed: '#ff5555',
-    brightGreen: '#55ff55',
-    brightYellow: '#ffff55',
-    brightBlue: '#5555ff',
-    brightMagenta: '#ff55ff',
-    brightCyan: '#55ffff',
-    brightWhite: '#ffffff',
-  },
-  ui: {
-    selection: colors.midAubergine
-  },
-  overrides: {
-    'activityBar.background': colors.highlightGray,
-    'editor.background': colors.editorGray,
-    'editorGroupHeader.tabsBackground': colors.bodyGray,
-    'list.activeSelectionBackground': colors.ubuntuOrange,
-    'list.hoverBackground': colors.highlightGray,
-    'list.inactiveSelectionBackground': colors.highlightGray,
-    'menu.background': colors.menuGray,
-    'menu.selectionBackground': colors.highlightGray,
-    'menubar.selectionBackground': colors.menuGray,
-    'panel.background': colors.bodyGray,
-    'sideBar.background': colors.sideBarGray,
-    'sideBarSectionHeader.background': colors.highlightGray,
-    'statusBar.background': colors.editorGray,
-    'tab.inactiveBackground': colors.bodyGray,
-    'tab.unfocusedInactiveBackground': colors.bodyGray,
-    'terminal.background': colors.darkAubergine,
-    'titleBar.activeBackground': colors.titleBarGray,
-    'titleBar.inactiveBackground': colors.inactiveTitleBarGray,
-  }
-};
-
-var fileName = themeName
-  .toLowerCase()
-  .replace(/\[\w*\]/, '')
-  .trim()
-  .replace(/\s+/, '-') + '.json';
-
-generateTheme(themeName, colorSet, path.join(__dirname, fileName));
\ No newline at end of file
-- 
cgit v1.2.3