Skip to content

Commit 608185f

Browse files
committed
fix: onboarding
1 parent 43ced2e commit 608185f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

apps/frontend/src/components/onboarding/onboarding.modal.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,37 +54,37 @@ export const OnboardingModal: FC<OnboardingModalProps> = ({ onClose }) => {
5454
className={clsx(
5555
'w-[32px] h-[32px] rounded-full flex items-center justify-center text-[14px] font-semibold transition-colors',
5656
step === 1
57-
? 'bg-primary text-white'
58-
: 'bg-customColor47 text-customColor18'
57+
? 'bg-boxFocused text-textItemFocused'
58+
: 'bg-newTableHeader'
5959
)}
6060
>
6161
1
6262
</div>
6363
<span
6464
className={clsx(
6565
'text-[14px]',
66-
step === 1 ? 'text-white font-medium' : 'text-customColor18'
66+
step === 1 ? 'font-medium' : 'text-textColor'
6767
)}
6868
>
6969
{t('connect_channels', 'Connect Channels')}
7070
</span>
7171
</div>
72-
<div className="w-[40px] h-[2px] bg-customColor47" />
72+
<div className="w-[40px] h-[2px] bg-boxFocused" />
7373
<div className="flex items-center gap-[8px]">
7474
<div
7575
className={clsx(
7676
'w-[32px] h-[32px] rounded-full flex items-center justify-center text-[14px] font-semibold transition-colors',
7777
step === 2
78-
? 'bg-primary text-white'
79-
: 'bg-customColor47 text-customColor18'
78+
? 'bg-boxFocused text-textItemFocused'
79+
: 'bg-newTableHeader'
8080
)}
8181
>
8282
2
8383
</div>
8484
<span
8585
className={clsx(
8686
'text-[14px]',
87-
step === 2 ? 'text-white font-medium' : 'text-customColor18'
87+
step === 2 ? 'font-medium' : 'text-textColor'
8888
)}
8989
>
9090
{t('watch_tutorial', 'Watch Tutorial')}
@@ -161,7 +161,7 @@ const OnboardingStep1: FC<{ onNext: () => void; onSkip: () => void }> = ({
161161

162162
{/* Connected channels */}
163163
{sortedIntegrations.length > 0 && (
164-
<div className="border border-customColor47 rounded-[8px] p-[16px]">
164+
<div className="bg-newTableHeader rounded-[8px] p-[16px]">
165165
<div className="text-[14px] font-medium mb-[12px]">
166166
{t('connected_channels', 'Connected Channels')} (
167167
{sortedIntegrations.length})
@@ -276,7 +276,7 @@ const OnboardingStep2: FC<{ onBack: () => void; onFinish: () => void }> = ({
276276
<div className="flex justify-between pt-[24px] mt-[8px]">
277277
<button
278278
onClick={onBack}
279-
className="group flex items-center gap-[8px] bg-transparent border-2 border-customColor47 hover:border-white/50 hover:bg-white/5 text-white/80 hover:text-white font-medium px-[24px] py-[12px] rounded-[12px] text-[15px] transition-all"
279+
className="group flex items-center gap-[8px] bg-transparent border-2 border-boxFocused font-medium px-[24px] py-[12px] rounded-[12px] text-[15px] transition-all"
280280
>
281281
<svg
282282
xmlns="http://www.w3.org/2000/svg"

0 commit comments

Comments
 (0)