diff options
author | Daniel Smith <rdnlsmith@gmail.com> | 2019-02-09 15:55:32 -0500 |
---|---|---|
committer | Daniel Smith <rdnlsmith@gmail.com> | 2019-02-09 15:55:32 -0500 |
commit | d8674b5ebf2880981a38a4eeedd0f0379b25b553 (patch) | |
tree | c1187c59b78006a0fb904461fbcf187248380b81 | |
parent | b8c7c56c28599ed85dbf1ad28ea632e053987eb3 (diff) |
Yaru Dark: Rename from Yaru
-rw-r--r-- | package.json | 4 | ||||
-rw-r--r-- | themes/dark/yaru-dark.json (renamed from themes/dark/yaru.json) | 2 | ||||
-rw-r--r-- | themes/src/dark/yaru-dark.ts (renamed from themes/src/dark/yaru.ts) | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/package.json b/package.json index f0cc69c..db24974 100644 --- a/package.json +++ b/package.json @@ -63,9 +63,9 @@ "path": "./themes/dark/united-gnome.json" }, { - "label": "Yaru [beta]", + "label": "Yaru Dark", "uiTheme": "vs-dark", - "path": "./themes/dark/yaru.json" + "path": "./themes/dark/yaru-dark.json" }, { "label": "Arc", diff --git a/themes/dark/yaru.json b/themes/dark/yaru-dark.json index ec59fa0..9553c4b 100644 --- a/themes/dark/yaru.json +++ b/themes/dark/yaru-dark.json @@ -1,5 +1,5 @@ { - "name": "Yaru [beta]", + "name": "Yaru Dark", "tokenColors": [ { "name": "Global settings", diff --git a/themes/src/dark/yaru.ts b/themes/src/dark/yaru-dark.ts index c34fac5..187f24a 100644 --- a/themes/src/dark/yaru.ts +++ b/themes/src/dark/yaru-dark.ts @@ -1,7 +1,7 @@ import * as path from 'path'; import { generateTheme, IColorSet } from 'vscode-theme-generator'; -const themeName = 'Yaru [beta]'; +const themeName = 'Yaru Dark'; const colors = { white: '#FFFFFF', cyan: '#55ffff', |