diff --git a/apps/src/aiComponentLibrary/chatMessage/chat-message.module.scss b/apps/src/aiComponentLibrary/chatMessage/chat-message.module.scss index cc0f93914925a..a489df94a2381 100644 --- a/apps/src/aiComponentLibrary/chatMessage/chat-message.module.scss +++ b/apps/src/aiComponentLibrary/chatMessage/chat-message.module.scss @@ -172,6 +172,10 @@ $vertical-gap: 0.375rem; } } +[data-brand='codeai-next'] .botOverlay span { + color: var(--text-neutral-white-fixed); +} + .danger { background-color: var(--background-error-extra-light); } diff --git a/apps/src/aiDifferentiation/AiDiffFloatingActionButton.tsx b/apps/src/aiDifferentiation/AiDiffFloatingActionButton.tsx index 3f2fdbc0f0838..a021cfe389058 100644 --- a/apps/src/aiDifferentiation/AiDiffFloatingActionButton.tsx +++ b/apps/src/aiDifferentiation/AiDiffFloatingActionButton.tsx @@ -308,6 +308,8 @@ const AiDiffFloatingActionButton: React.FC = ({ updateUnreadNotificationCount(); }; + const brand = document.documentElement.dataset.brand; + return (
{(!chatIsOpen || !drawerIsEnabled) && ( @@ -370,7 +372,8 @@ const AiDiffFloatingActionButton: React.FC = ({ : 'var(--background-brand-aqua-primary)', color: unreadNotificationCount === 'loading' || - unreadNotificationCount > 0 + unreadNotificationCount > 0 || + brand === 'codeai-next' ? 'var(--text-neutral-white-fixed)' : 'var(--text-neutral-black-fixed)', top: '5%', diff --git a/apps/src/aiTeacherDrawer/ai-differentiation.module.scss b/apps/src/aiTeacherDrawer/ai-differentiation.module.scss index a07957629df85..d57715f11b194 100644 --- a/apps/src/aiTeacherDrawer/ai-differentiation.module.scss +++ b/apps/src/aiTeacherDrawer/ai-differentiation.module.scss @@ -211,6 +211,10 @@ $sidebar-tooltip-z-index: 2010; } } +[data-brand='codeai-next'] .taOverlayHeader span { + color: var(--text-neutral-white-fixed); +} + .aiDiffHeader { border-radius: 4px 4px 0 0; background: var(--background-neutral-primary-inverse);