diff options
author | Daniel Smith <rdnlsmith@gmail.com> | 2018-10-26 12:20:26 -0400 |
---|---|---|
committer | Daniel Smith <rdnlsmith@gmail.com> | 2018-10-26 12:20:26 -0400 |
commit | 9a1d9d542b083363e04d472a85cfaf8ff558ec8d (patch) | |
tree | dbf0bdcc71019830ff604e3da5efd2e68229775f | |
parent | d50c6bb9e3899e52818878a71348a1bb556555e1 (diff) |
Yaru: Add [beta] tag
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | themes/dark/yaru.json | 2 | ||||
-rw-r--r-- | themes/src/dark/yaru.ts | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/package.json b/package.json index 21602dc..eef8be2 100644 --- a/package.json +++ b/package.json @@ -63,7 +63,7 @@ "path": "./themes/dark/united-gnome.json" }, { - "label": "Yaru", + "label": "Yaru [beta]", "uiTheme": "vs-dark", "path": "./themes/dark/yaru.json" }, diff --git a/themes/dark/yaru.json b/themes/dark/yaru.json index fddab5f..441ec75 100644 --- a/themes/dark/yaru.json +++ b/themes/dark/yaru.json @@ -1,5 +1,5 @@ { - "name": "Yaru", + "name": "Yaru [beta]", "tokenColors": [ { "name": "Global settings", diff --git a/themes/src/dark/yaru.ts b/themes/src/dark/yaru.ts index a1a38cd..6a274a1 100644 --- a/themes/src/dark/yaru.ts +++ b/themes/src/dark/yaru.ts @@ -1,7 +1,7 @@ import * as path from 'path'; import { generateTheme, IColorSet } from 'vscode-theme-generator'; -const themeName = 'Yaru'; +const themeName = 'Yaru [beta]'; const colors = { black: '#111111', white: '#FFFFFF', |