From 9233655676e2ad9a3aa643967ffb6dd0bab59380 Mon Sep 17 00:00:00 2001 From: Dries Decramer Date: Tue, 19 May 2020 11:48:29 +0200 Subject: [PATCH 1/3] Adjust teal dark hex value (old teal darkest value) --- index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.css b/index.css index 3e6b765..aeda4ec 100644 --- a/index.css +++ b/index.css @@ -5,7 +5,7 @@ --color-teal-lightest: #f0f5fc; --color-teal-light: #c1cede; --color-teal: #64788f; - --color-teal-dark: #344b63; + --color-teal-dark: #2a3b4d; --color-teal-darkest: #1a1c20; --color-mint-lightest: #f0fafa; From cd838c8124ddc96a08a424b04a69518c161864b1 Mon Sep 17 00:00:00 2001 From: Dries Decramer Date: Tue, 19 May 2020 11:51:24 +0200 Subject: [PATCH 2/3] Version bump --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7797c2d..39ad0b4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@teamleader/ui-colors", "private": false, - "version": "0.2.0", + "version": "0.3.0", "description": "Teamleader UI colors", "main": "index.css", "repository": { From 278fe1e8e950e28af84c1ddd7a50950abb4ea775 Mon Sep 17 00:00:00 2001 From: Dries Decramer Date: Tue, 19 May 2020 11:53:32 +0200 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c6c4ed..da1f81a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,14 +10,20 @@ ### Fixed +## [0.3.0] - 2020-05-19 + +### Changed + +- :fire: `Teal dark`: changed hex value from `#344b63` to `#2a3b4d`. ([@driesd](https://github.com/driesd) in [#3]) + ## [0.2.0] - 2020-03-31 ### Changed -- `Teal darkest`: changed hex value from `#2a3b4d` to `#1a1c20`. ([@driesd](https://github.com/driesd) in [#2](https://github.com/teamleadercrm/ui-colors/pull/2)) +- :fire: `Teal darkest`: changed hex value from `#2a3b4d` to `#1a1c20`. ([@driesd](https://github.com/driesd) in [#2]) ## [0.1.0] - 2020-03-20 ### Changed -- changed all lightest color values to be less bright than the previous ones. ([@driesd](https://github.com/driesd) in [#1](https://github.com/teamleadercrm/ui-colors/pull/1)) +- changed all lightest color values to be less bright than the previous ones. ([@driesd](https://github.com/driesd) in [#1])