diff --git a/src/components/Button/Button.scss b/src/components/Button/Button.scss index 6c28bc2c3d..cbc18aa598 100644 --- a/src/components/Button/Button.scss +++ b/src/components/Button/Button.scss @@ -194,7 +194,9 @@ $block: '.#{$ns}button'; --yc-button-background-color: var(--yc-color-base-selection); --yc-button-background-color-hover: var(--yc-color-base-selection-hover); - @include button-text-color(var(--yc-color-text-special)); + @include button-text-color( + var(--yc-my-color-brand-text, var(--yc-color-text-special)) + ); } } diff --git a/styles/brand.scss b/styles/brand.scss index e9d6671600..29c7668cb8 100644 --- a/styles/brand.scss +++ b/styles/brand.scss @@ -15,6 +15,7 @@ --yc-my-color-brand-selection-hover: var(--yc-color-private-blue-100); --yc-my-color-brand-link: var(--yc-my-color-brand-normal); --yc-my-color-brand-link-hover: var(--yc-color-private-blue-800); + --yc-my-color-brand-text: var(--yc-my-color-brand-normal); --yc-my-color-brand-text-contrast: var(--yc-color-text-light-primary); --yc-my-color-brand-link-visited: var(--yc-color-private-purple-550); --yc-my-color-brand-link-visited-hover: var(--yc-color-private-purple-800); @@ -28,6 +29,7 @@ --yc-my-color-brand-selection-hover: var(--yc-color-private-blue-300); --yc-my-color-brand-link: var(--yc-color-private-blue-700); --yc-my-color-brand-link-hover: var(--yc-color-private-blue-850); + --yc-my-color-brand-text: var(--yc-color-private-blue-700); --yc-my-color-brand-text-contrast: var(--yc-color-text-light-primary); --yc-my-color-brand-link-visited: var(--yc-color-private-purple-700); --yc-my-color-brand-link-visited-hover: var(--yc-color-private-purple-850);