From 7b5165d167c8a74d9d8bbc5f9fc8d83c619e66ed Mon Sep 17 00:00:00 2001 From: Kuba Borowski Date: Fri, 24 Apr 2020 17:49:12 +0200 Subject: [PATCH 1/3] Fix statusBarItem.remoteBackground not changing with accent color (#475) * Update README.md * Bump acorn from 6.3.0 to 6.4.1 (#464) Bumps [acorn](https://github.com/acornjs/acorn) from 6.3.0 to 6.4.1. - [Release notes](https://github.com/acornjs/acorn/releases) - [Commits](https://github.com/acornjs/acorn/compare/6.3.0...6.4.1) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix statusBarItem.remoteBackground not changing with accent color Co-authored-by: Mattia Astorino Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- README.md | 1 - material-theme.config.json | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b770e5f..e16fea4 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,6 @@ You can override the Material Theme UI and schemes colors by adding these theme- Thanks to the Material Theme community you can use it with other software, here are the official portings: - [Windows Terminal](https://github.com/julianlatest/material-windows-terminal) (by [@julianlatest](https://github.com/julianlatest)) -- [IntelliJ IDEA](https://github.com/ChrisRM/material-theme-jetbrains) (thanks to [@ChrisRM](https://github.com/ChrisRM) and [@mallowigi](https://github.com/mallowigi)). - [Vim and NeoVim](https://github.com/kaicataldo/material.vim) (by [@kaicataldo](https://github.com/kaicataldo)) - [Vim](https://github.com/hzchirs/vim-material) (thanks to [@hzchirs](https://github.com/hzchirs)). - [Terminal OSX](https://gist.github.com/mvaneijgen/4c56701215847dd5ddcf) (thanks to [@mvaneijgen](https://github.com/mvaneijgen)). diff --git a/material-theme.config.json b/material-theme.config.json index 2325ad4..9371a0a 100644 --- a/material-theme.config.json +++ b/material-theme.config.json @@ -105,6 +105,10 @@ "selection.background": { "alpha": 40, "value": null + }, + "statusBarItem.remoteBackground": { + "alpha": 100, + "value": null } } } From 81549bdb4a6cfb811ebeba6b510a63a2bf7a9dc6 Mon Sep 17 00:00:00 2001 From: Kuba Borowski Date: Fri, 24 Apr 2020 17:49:12 +0200 Subject: [PATCH 2/3] Fix statusBarItem.remoteBackground not changing with accent color (#475) * Update README.md * Bump acorn from 6.3.0 to 6.4.1 (#464) Bumps [acorn](https://github.com/acornjs/acorn) from 6.3.0 to 6.4.1. - [Release notes](https://github.com/acornjs/acorn/releases) - [Commits](https://github.com/acornjs/acorn/compare/6.3.0...6.4.1) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix statusBarItem.remoteBackground not changing with accent color Co-authored-by: Mattia Astorino Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- material-theme.config.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/material-theme.config.json b/material-theme.config.json index 2325ad4..9371a0a 100644 --- a/material-theme.config.json +++ b/material-theme.config.json @@ -105,6 +105,10 @@ "selection.background": { "alpha": 40, "value": null + }, + "statusBarItem.remoteBackground": { + "alpha": 100, + "value": null } } } From e6d8c3f27344f56269d89612d4c2cbf4b5b01e4f Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Fri, 26 Jun 2020 19:40:08 +0200 Subject: [PATCH 3/3] fix: input validation borders opacity fix: #481 --- scripts/generator/color-set.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/generator/color-set.ts b/scripts/generator/color-set.ts index e3897d0..8c92ef6 100644 --- a/scripts/generator/color-set.ts +++ b/scripts/generator/color-set.ts @@ -359,9 +359,9 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => { /** * Inputs validation style */ - 'inputValidation.errorBorder': `${theme.scheme.base.red}50`, - 'inputValidation.infoBorder': `${theme.scheme.base.blue}50`, - 'inputValidation.warningBorder': `${theme.scheme.base.yellow}50`, + 'inputValidation.errorBorder': `${theme.scheme.base.red}`, + 'inputValidation.infoBorder': `${theme.scheme.base.blue}`, + 'inputValidation.warningBorder': `${theme.scheme.base.yellow}`, /** * Dropdown menu style */