diff --git a/.gitignore b/.gitignore index e423012..305c5d0 100644 --- a/.gitignore +++ b/.gitignore @@ -84,3 +84,4 @@ typings/ .dynamodb/ */.DS_Store +.DS_Store diff --git a/dictionary/properties/color/marketing.yaml b/dictionary/properties/color/marketing.yaml index bba0b1d..245881e 100644 --- a/dictionary/properties/color/marketing.yaml +++ b/dictionary/properties/color/marketing.yaml @@ -1,6 +1,8 @@ color: marketing: - purple: + lilac: value: '#C2BDFF' - blue: + iris: + value: '#474F7A' + orchid: value: '#132041' diff --git a/dist/css/marketing-colors.css b/dist/css/marketing-colors.css index 34c90c7..32fe5b5 100644 --- a/dist/css/marketing-colors.css +++ b/dist/css/marketing-colors.css @@ -1,4 +1,5 @@ :root { - --ds-color-marketing-purple: #c2bdff; - --ds-color-marketing-blue: #132041; + --ds-color-marketing-lilac: #c2bdff; + --ds-color-marketing-iris: #474f7a; + --ds-color-marketing-orchid: #132041; } diff --git a/dist/js/marketing-colors.d.ts b/dist/js/marketing-colors.d.ts index f5de3be..d246179 100644 --- a/dist/js/marketing-colors.d.ts +++ b/dist/js/marketing-colors.d.ts @@ -1,2 +1,3 @@ -export const dsColorMarketingPurple : string; -export const dsColorMarketingBlue : string; \ No newline at end of file +export const dsColorMarketingLilac : string; +export const dsColorMarketingIris : string; +export const dsColorMarketingOrchid : string; \ No newline at end of file diff --git a/dist/js/marketing-colors.js b/dist/js/marketing-colors.js index 65e000e..c9e18ab 100644 --- a/dist/js/marketing-colors.js +++ b/dist/js/marketing-colors.js @@ -1,2 +1,3 @@ -export const dsColorMarketingPurple = "#c2bdff"; -export const dsColorMarketingBlue = "#132041"; \ No newline at end of file +export const dsColorMarketingLilac = "#c2bdff"; +export const dsColorMarketingIris = "#474f7a"; +export const dsColorMarketingOrchid = "#132041"; \ No newline at end of file diff --git a/dist/less/marketing-colors.less b/dist/less/marketing-colors.less index d8fefc6..e503298 100644 --- a/dist/less/marketing-colors.less +++ b/dist/less/marketing-colors.less @@ -1,2 +1,3 @@ -@ds-color-marketing-purple: #c2bdff; -@ds-color-marketing-blue: #132041; \ No newline at end of file +@ds-color-marketing-lilac: #c2bdff; +@ds-color-marketing-iris: #474f7a; +@ds-color-marketing-orchid: #132041; \ No newline at end of file diff --git a/dist/scss/marketing-colors.scss b/dist/scss/marketing-colors.scss index abaf8c5..70e1bf9 100644 --- a/dist/scss/marketing-colors.scss +++ b/dist/scss/marketing-colors.scss @@ -1,2 +1,3 @@ -$ds-color-marketing-purple: #c2bdff; -$ds-color-marketing-blue: #132041; \ No newline at end of file +$ds-color-marketing-lilac: #c2bdff; +$ds-color-marketing-iris: #474f7a; +$ds-color-marketing-orchid: #132041; \ No newline at end of file diff --git a/package.json b/package.json index 3991f0d..55483ee 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "8.7.1", + "version": "9.0.0", "name": "@design/jw-design-library", "description": "A design library of global styles and icons for JW Player products", "license": "ISC",