fix(BOOK-622): Removed blending step for hover colors and respect original values from design system instead

Approved-by: Linus Flood
This commit is contained in:
Erik Tiekstra
2025-12-02 06:24:59 +00:00
parent 3e4ac2c270
commit 8f7e4b8d06
21 changed files with 747 additions and 428 deletions

View File

@@ -135,7 +135,7 @@ export const theme = {
'Text/Interactive/Hover': '#404655',
'Text/Interactive/Secondary': '#26544A',
'Text/Interactive/Secondary Hover': '#3A655C',
'Text/Interactive/Inverted Hover': '#b3b4bd',
'Text/Interactive/Inverted Hover': '#FFFFFFB3',
'Text/Interactive/Disabled': '#8C8C8C',
'Text/Interactive/Focus': '#262626',
'Text/Interactive/Error': '#AD0015',
@@ -151,7 +151,7 @@ export const theme = {
'Text/Brand/OnAccent/Accent Secondary': '#747474',
'Text/Brand/OnPrimary 1/Heading': '#FFFFFF',
'Text/Brand/OnPrimary 1/Default': '#FFFFFF',
'Text/Brand/OnPrimary 1/Hover': '#ffffff',
'Text/Brand/OnPrimary 1/Hover': '#FFFFFFB3',
'Text/Brand/OnPrimary 1/Accent': '#B7C5C8',
'Text/Brand/OnPrimary 2/Heading': '#FFFFFF',
'Text/Brand/OnPrimary 2/Default': '#FFFFFF',
@@ -162,14 +162,14 @@ export const theme = {
'Background/Primary': '#FFFFFF',
'Background/Secondary': '#FFFFFF',
'Surface/Primary/Default': '#FFFFFF',
'Surface/Primary/Hover': '#f2f2f2',
'Surface/Primary/Hover Light': '#e6e5e5',
'Surface/Primary/Hover': '#1F1C1B0D',
'Surface/Primary/Hover Light': '#1F1C1B1A',
'Surface/Primary/Hover Accent': '#E9E9E9',
'Surface/Primary/OnSurface/Default': '#F4F5F2',
'Surface/Primary/Disabled': '#1F1C1B1A',
'Surface/Secondary/Default': '#EFF0EB',
'Surface/Secondary/Subtle': '#D9DAD6',
'Surface/Secondary/Hover': '#e3e4df',
'Surface/Secondary/Hover': '#1F1C1B0D',
'Surface/Brand/Accent/Default': '#C7DDD5',
'Surface/Brand/Accent/OnAccent/Accent': '#2F3445',
'Surface/Brand/Accent/OnAccent/Accent Secondary': '#2F3445',
@@ -209,7 +209,7 @@ export const theme = {
'Icon/Interactive/Default': '#181E34',
'Icon/Interactive/Secondary': '#26544A',
'Icon/Interactive/Accent': '#26544A',
'Icon/Interactive/Inverted Hover': '#b3b4bd',
'Icon/Interactive/Inverted Hover': '#FFFFFFB3',
'Icon/Interactive/Disabled': '#BFBFBF',
'Icon/Interactive/Placeholder': '#747474',
'Icon/Feedback/Information': '#284EA0',
@@ -226,7 +226,7 @@ export const theme = {
'Overlay/80': '#1F1C1BCC',
'Overlay/90': '#1F1C1BE6',
'Component/Button/Brand/Primary/Fill/Default': '#181E34',
'Component/Button/Brand/Primary/Fill/Hover': '#2c3146',
'Component/Button/Brand/Primary/Fill/Hover': '#FFFFFF1A',
'Component/Button/Brand/Primary/Fill/Disabled': '#1F1C1B1A',
'Component/Button/Brand/Primary/On fill/Default': '#FFFFFF',
'Component/Button/Brand/Primary/On fill/Hover': '#FFFFFF',
@@ -242,15 +242,15 @@ export const theme = {
'Component/Button/Brand/Secondary/On fill/Default': '#181E34',
'Component/Button/Brand/Secondary/On fill/Hover': '#404655',
'Component/Button/Brand/Secondary/On fill/Inverted': '#FFFFFF',
'Component/Button/Brand/Secondary/On fill/Hover inverted': '#b3b4bd',
'Component/Button/Brand/Secondary/On fill/Hover inverted': '#FFFFFFB3',
'Component/Button/Brand/Secondary/On fill/Disabled': '#8C8C8C',
'Component/Button/Brand/Secondary/Border/Default': '#181E34',
'Component/Button/Brand/Secondary/Border/Hover': '#404655',
'Component/Button/Brand/Secondary/Border/Inverted': '#FFFFFF',
'Component/Button/Brand/Secondary/Border/Hover inverted': '#838593',
'Component/Button/Brand/Secondary/Border/Hover inverted': '#FFFFFF80',
'Component/Button/Brand/Secondary/Border/Disabled': '#1F1C1B1A',
'Component/Button/Brand/Tertiary/Fill/Default': '#004337',
'Component/Button/Brand/Tertiary/Fill/Hover': '#215448',
'Component/Button/Brand/Tertiary/Fill/Hover': '#FFFFFF1A',
'Component/Button/Brand/Tertiary/Fill/Disabled': '#1F1C1B1A',
'Component/Button/Brand/Tertiary/On fill/Default': '#FFFFFF',
'Component/Button/Brand/Tertiary/On fill/Hover': '#FFFFFF',
@@ -260,14 +260,14 @@ export const theme = {
'Component/Button/Brand/Tertiary/Border/Disabled': '#FFFFFF00',
'Component/Button/Inverted/Fill/Default': '#FFFFFF',
'Component/Button/Inverted/Fill/Faded': '#FFFFFFE6',
'Component/Button/Inverted/Fill/Hover': '#e6e5e5',
'Component/Button/Inverted/Fill/Hover': '#1F1C1B1A',
'Component/Button/Inverted/Fill/Hover Inverted': '#004337',
'Component/Button/Inverted/Fill/Disabled': '#1F1C1B1A',
'Component/Button/Inverted/Border/Default': '#FFFFFF00',
'Component/Button/Inverted/Border/Hover': '#FFFFFF00',
'Component/Button/Inverted/Border/Disable': '#FFFFFF00',
'Component/Button/Inverted/On fill/Default': '#181E34',
'Component/Button/Inverted/On fill/Hover': '#2c3146',
'Component/Button/Inverted/On fill/Hover': '#FFFFFF1A',
'Component/Button/Inverted/On fill/Hover inverted': '#FFFFFF',
'Component/Button/Inverted/On fill/Disabled': '#8C8C8C',
'Border/Interactive/Default': '#BFBFBF',
@@ -292,6 +292,6 @@ export const theme = {
'Component/Button/Muted/On fill/Hover Inverted': '#404655',
'Component/Button/Muted/On fill/Disabled': '#8C8C8C',
'Component/Button/Muted/Border/Default': '#FFFFFF1A',
'Component/Button/Muted/Border/Hover': '#ffffff30',
'Component/Button/Muted/Border/Hover': '#FFFFFF1A',
'Component/Button/Muted/Border/Disable': '#FFFFFF1A',
}