From bc30288405c70f10bfa2eb08ba34e9174aaa2933 Mon Sep 17 00:00:00 2001 From: Victor Perera Date: Tue, 23 Mar 2021 14:46:03 -0600 Subject: [PATCH 1/9] Change #0A6EBE to #EFE5B1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Victor Perera Signed-off-by: Fredrik Adelöw --- packages/theme/src/themes.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/theme/src/themes.ts b/packages/theme/src/themes.ts index 0cdd41508c..0e592cb521 100644 --- a/packages/theme/src/themes.ts +++ b/packages/theme/src/themes.ts @@ -124,8 +124,8 @@ export const darkTheme = createTheme({ errorText: '#CA001B', infoText: '#004e8a', warningText: '#000000', - linkHover: '#2196F3', - link: '#0A6EBE', + linkHover: '#EFE5A1', + link: '#EFE5B1', gold: yellow.A700, navigation: { background: '#424242', From 343913573fa4fcf864991c50f3d6d93579629aee Mon Sep 17 00:00:00 2001 From: Victor Perera Date: Wed, 24 Mar 2021 08:23:52 -0600 Subject: [PATCH 2/9] banner link color MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Victor Perera Signed-off-by: Fredrik Adelöw --- packages/theme/src/themes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/theme/src/themes.ts b/packages/theme/src/themes.ts index 0e592cb521..3d9e7f139e 100644 --- a/packages/theme/src/themes.ts +++ b/packages/theme/src/themes.ts @@ -46,7 +46,7 @@ export const lightTheme = createTheme({ info: '#2E77D0', error: '#E22134', text: '#FFFFFF', - link: '#000000', + link: '#0A6EBE', }, border: '#E6E6E6', textContrast: '#000000', From 931b21a127aa69eb2851eb68ea10b5d40816285a Mon Sep 17 00:00:00 2001 From: Victor Perera Date: Wed, 24 Mar 2021 08:29:49 -0600 Subject: [PATCH 3/9] Add Changeset MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Victor Perera Signed-off-by: Fredrik Adelöw --- .changeset/light-horses-hammer.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/light-horses-hammer.md diff --git a/.changeset/light-horses-hammer.md b/.changeset/light-horses-hammer.md new file mode 100644 index 0000000000..4e3159cc1d --- /dev/null +++ b/.changeset/light-horses-hammer.md @@ -0,0 +1,5 @@ +--- +'@backstage/theme': patch +--- + +I've changed the link color in dark theme to #EFE5B1 instead dark blue From f9b206cece589334946e9fe82c72e5767125b97b Mon Sep 17 00:00:00 2001 From: Victor Perera Date: Wed, 24 Mar 2021 08:33:48 -0600 Subject: [PATCH 4/9] Revert "Change #0A6EBE to #EFE5B1" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 30d3886ef7cba00ac55c8db9aca7f20eda8a5d2f. Signed-off-by: Victor Perera Signed-off-by: Fredrik Adelöw --- packages/theme/src/themes.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/theme/src/themes.ts b/packages/theme/src/themes.ts index 3d9e7f139e..26b58389b9 100644 --- a/packages/theme/src/themes.ts +++ b/packages/theme/src/themes.ts @@ -124,8 +124,8 @@ export const darkTheme = createTheme({ errorText: '#CA001B', infoText: '#004e8a', warningText: '#000000', - linkHover: '#EFE5A1', - link: '#EFE5B1', + linkHover: '#2196F3', + link: '#0A6EBE', gold: yellow.A700, navigation: { background: '#424242', From 08b25805d1501ec4e555e9689efe1ffb72d13026 Mon Sep 17 00:00:00 2001 From: Victor Perera Date: Wed, 24 Mar 2021 08:38:12 -0600 Subject: [PATCH 5/9] Fixing typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Victor Perera Signed-off-by: Fredrik Adelöw --- packages/theme/src/themes.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/theme/src/themes.ts b/packages/theme/src/themes.ts index 26b58389b9..f67360f176 100644 --- a/packages/theme/src/themes.ts +++ b/packages/theme/src/themes.ts @@ -46,7 +46,7 @@ export const lightTheme = createTheme({ info: '#2E77D0', error: '#E22134', text: '#FFFFFF', - link: '#0A6EBE', + link: '#000000', }, border: '#E6E6E6', textContrast: '#000000', @@ -111,7 +111,7 @@ export const darkTheme = createTheme({ info: '#2E77D0', error: '#E22134', text: '#FFFFFF', - link: '#000000', + link: '#0A6EBE', }, border: '#E6E6E6', textContrast: '#FFFFFF', @@ -124,8 +124,8 @@ export const darkTheme = createTheme({ errorText: '#CA001B', infoText: '#004e8a', warningText: '#000000', - linkHover: '#2196F3', - link: '#0A6EBE', + linkHover: '#EFE5A1', + link: '#EFE5B1', gold: yellow.A700, navigation: { background: '#424242', From 9c9df47f4f3f3bd597039eef5e54fef806b4318f Mon Sep 17 00:00:00 2001 From: Victor Perera Date: Wed, 24 Mar 2021 13:01:40 -0600 Subject: [PATCH 6/9] Replace color proposed by one Backstage color MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Victor Perera Signed-off-by: Fredrik Adelöw --- packages/theme/src/themes.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/theme/src/themes.ts b/packages/theme/src/themes.ts index f67360f176..b6810d9a84 100644 --- a/packages/theme/src/themes.ts +++ b/packages/theme/src/themes.ts @@ -111,7 +111,7 @@ export const darkTheme = createTheme({ info: '#2E77D0', error: '#E22134', text: '#FFFFFF', - link: '#0A6EBE', + link: '#FDFB9F', }, border: '#E6E6E6', textContrast: '#FFFFFF', @@ -124,8 +124,8 @@ export const darkTheme = createTheme({ errorText: '#CA001B', infoText: '#004e8a', warningText: '#000000', - linkHover: '#EFE5A1', - link: '#EFE5B1', + linkHover: '#FFED51', + link: '#FDFB9F', gold: yellow.A700, navigation: { background: '#424242', From 7923c2a94606dfb8c9070cf92da76496da8e491e Mon Sep 17 00:00:00 2001 From: Victor Perera Date: Wed, 24 Mar 2021 13:06:13 -0600 Subject: [PATCH 7/9] Fix Changeset MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Victor Perera Signed-off-by: Fredrik Adelöw --- .changeset/light-horses-hammer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/light-horses-hammer.md b/.changeset/light-horses-hammer.md index 4e3159cc1d..06abf339f1 100644 --- a/.changeset/light-horses-hammer.md +++ b/.changeset/light-horses-hammer.md @@ -2,4 +2,4 @@ '@backstage/theme': patch --- -I've changed the link color in dark theme to #EFE5B1 instead dark blue +Replace the link color in dark theme to #FDFB9F instead dark blue From 8546ef9f0c223ffff1d47be20e1f9dab8bdf8273 Mon Sep 17 00:00:00 2001 From: Victor Perera Date: Wed, 24 Mar 2021 13:39:28 -0600 Subject: [PATCH 8/9] Fix Changeset MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Victor Perera Signed-off-by: Fredrik Adelöw --- .changeset/light-horses-hammer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/light-horses-hammer.md b/.changeset/light-horses-hammer.md index 06abf339f1..0d421c7056 100644 --- a/.changeset/light-horses-hammer.md +++ b/.changeset/light-horses-hammer.md @@ -2,4 +2,4 @@ '@backstage/theme': patch --- -Replace the link color in dark theme to #FDFB9F instead dark blue +Replace the link color in dark theme From f6b8cf96cacda208834e593835eda06a3906d05c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Tue, 20 Apr 2021 19:43:39 +0200 Subject: [PATCH 9/9] fix according to designer input MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw --- packages/theme/src/themes.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages/theme/src/themes.ts b/packages/theme/src/themes.ts index b6810d9a84..94cf38656e 100644 --- a/packages/theme/src/themes.ts +++ b/packages/theme/src/themes.ts @@ -102,7 +102,8 @@ export const darkTheme = createTheme({ }, }, primary: { - main: '#8CB4E5', + main: '#9CC9FF', + dark: '#82BAFD', }, secondary: { main: '#FF88B2', @@ -111,7 +112,7 @@ export const darkTheme = createTheme({ info: '#2E77D0', error: '#E22134', text: '#FFFFFF', - link: '#FDFB9F', + link: '#000000', }, border: '#E6E6E6', textContrast: '#FFFFFF', @@ -124,8 +125,8 @@ export const darkTheme = createTheme({ errorText: '#CA001B', infoText: '#004e8a', warningText: '#000000', - linkHover: '#FFED51', - link: '#FDFB9F', + linkHover: '#82BAFD', + link: '#9CC9FF', gold: yellow.A700, navigation: { background: '#424242',