diff --git a/src/lib/global.ts b/src/lib/global.ts index 91b8c503..fca36d8f 100644 --- a/src/lib/global.ts +++ b/src/lib/global.ts @@ -159,16 +159,16 @@ export const Global = styled.div` --woly-canvas-text-active: hsla(var(--bw-0), 1); } - [data-priority='tertiary'] { + [data-priority='goast'] { --woly-shape-default: transparent; --woly-shape-disabled: hsla(var(--bw-200), 1); --woly-shape-hover: transparent; --woly-shape-active: transparent; - --woly-shape-text-default: hsla(var(--bw-0), 1); + --woly-shape-text-default: hsla(var(--bw-1000), 1); --woly-shape-text-disabled: hsla(var(--bw-300), 1); - --woly-shape-text-hover: hsla(var(--bw-600), 1); - --woly-shape-text-active: hsla(var(--bw-700), 1); + --woly-shape-text-hover: hsla(var(--bw-400), 1); + --woly-shape-text-active: hsla(var(--bw-500), 1); --woly-canvas-default: transparent; --woly-canvas-disabled: hsla(var(--bw-200), 1); diff --git a/src/woly/atoms/button-icon/usage.mdx b/src/woly/atoms/button-icon/usage.mdx index a8afd105..08bace67 100644 --- a/src/woly/atoms/button-icon/usage.mdx +++ b/src/woly/atoms/button-icon/usage.mdx @@ -62,8 +62,8 @@ Button-icon's size can controlled by block-container and it`s width is equal to ### Weight and priority -Button-icon can be represented in primary, secondary, default or tertiary priorities and can be styled with fill or outline. -In case of choosing button-icon in tertiary priority with outline styles use the opposite background color to the text color of button-icon. +Button-icon can be represented in primary, secondary, default or goast priorities and can be styled with fill or outline. +In case of choosing button-icon in goast priority with outline styles use the opposite background color to the text color of button-icon. } onClick={() => console.info('ButtonIcon clicked')} - priority="tertiary" + priority="goast" /> diff --git a/src/woly/atoms/button/usage.mdx b/src/woly/atoms/button/usage.mdx index 78b50d64..751d9d2f 100644 --- a/src/woly/atoms/button/usage.mdx +++ b/src/woly/atoms/button/usage.mdx @@ -61,10 +61,12 @@ Secondary priority should be used as a default priority.