From e9e38dddf6d044eb62a95bc33de95e0b88098292 Mon Sep 17 00:00:00 2001 From: Kim Hart Date: Tue, 19 Jul 2022 12:02:16 -0400 Subject: [PATCH] remove blue-lighter --- dictionary/properties/color/system.yaml | 3 --- dist/css/system-colors.css | 1 - dist/js/system-colors.d.ts | 1 - dist/js/system-colors.mjs | 1 - dist/less/system-colors.less | 1 - dist/scss/system-colors.scss | 1 - 6 files changed, 8 deletions(-) diff --git a/dictionary/properties/color/system.yaml b/dictionary/properties/color/system.yaml index 3d69608..4fbf01f 100644 --- a/dictionary/properties/color/system.yaml +++ b/dictionary/properties/color/system.yaml @@ -12,9 +12,6 @@ color: blue-light: value: '#D2EBFF' - blue-lighter: - value: '#f1f8fe' - green: value: '#1F9B85' comment: affirmative diff --git a/dist/css/system-colors.css b/dist/css/system-colors.css index e16cdc3..ccb77a4 100644 --- a/dist/css/system-colors.css +++ b/dist/css/system-colors.css @@ -3,7 +3,6 @@ --ds-color-system-blue: #0a75e3; --ds-color-system-blue-dark: #07529f; --ds-color-system-blue-light: #d2ebff; - --ds-color-system-blue-lighter: #f1f8fe; --ds-color-system-green: #1f9b85; /* affirmative */ --ds-color-system-green-dark: #166c5d; --ds-color-system-green-light: #ccf5eb; diff --git a/dist/js/system-colors.d.ts b/dist/js/system-colors.d.ts index 2add00f..4c5947c 100644 --- a/dist/js/system-colors.d.ts +++ b/dist/js/system-colors.d.ts @@ -2,7 +2,6 @@ export const dsColorSystemBlack : string; export const dsColorSystemBlue : string; export const dsColorSystemBlueDark : string; export const dsColorSystemBlueLight : string; -export const dsColorSystemBlueLighter : string; export const dsColorSystemGreen : string; // affirmative export const dsColorSystemGreenDark : string; export const dsColorSystemGreenLight : string; diff --git a/dist/js/system-colors.mjs b/dist/js/system-colors.mjs index 83957d4..992a4a3 100644 --- a/dist/js/system-colors.mjs +++ b/dist/js/system-colors.mjs @@ -2,7 +2,6 @@ export const dsColorSystemBlack = "#000000"; export const dsColorSystemBlue = "#0a75e3"; export const dsColorSystemBlueDark = "#07529f"; export const dsColorSystemBlueLight = "#d2ebff"; -export const dsColorSystemBlueLighter = "#f1f8fe"; export const dsColorSystemGreen = "#1f9b85"; // affirmative export const dsColorSystemGreenDark = "#166c5d"; export const dsColorSystemGreenLight = "#ccf5eb"; diff --git a/dist/less/system-colors.less b/dist/less/system-colors.less index 904aa6d..f787f91 100644 --- a/dist/less/system-colors.less +++ b/dist/less/system-colors.less @@ -2,7 +2,6 @@ @ds-color-system-blue: #0a75e3; @ds-color-system-blue-dark: #07529f; @ds-color-system-blue-light: #d2ebff; -@ds-color-system-blue-lighter: #f1f8fe; @ds-color-system-green: #1f9b85; // affirmative @ds-color-system-green-dark: #166c5d; @ds-color-system-green-light: #ccf5eb; diff --git a/dist/scss/system-colors.scss b/dist/scss/system-colors.scss index 9e2efa5..10290fc 100644 --- a/dist/scss/system-colors.scss +++ b/dist/scss/system-colors.scss @@ -2,7 +2,6 @@ $ds-color-system-black: #000000; $ds-color-system-blue: #0a75e3; $ds-color-system-blue-dark: #07529f; $ds-color-system-blue-light: #d2ebff; -$ds-color-system-blue-lighter: #f1f8fe; $ds-color-system-green: #1f9b85; // affirmative $ds-color-system-green-dark: #166c5d; $ds-color-system-green-light: #ccf5eb;