@@ -21,7 +21,7 @@ export default function DeployChatAlert({ alert, clearAlert, postMessage }: Depl
2121 animate = { { opacity : 1 , y : 0 } }
2222 exit = { { opacity : 0 , y : - 20 } }
2323 transition = { { duration : 0.3 } }
24- className = { `rounded-lg border border-bolt -elements-borderColor bg-bolt -elements-background-depth-2 p-4 mb-2` }
24+ className = { `rounded-lg border border-codinit -elements-borderColor bg-codinit -elements-background-depth-2 p-4 mb-2` }
2525 >
2626 < div className = "flex items-start" >
2727 { /* Icon */ }
@@ -35,10 +35,10 @@ export default function DeployChatAlert({ alert, clearAlert, postMessage }: Depl
3535 className = { classNames (
3636 'text-xl' ,
3737 type === 'success'
38- ? 'i-ph:check-circle-duotone text-bolt -elements-icon-success'
38+ ? 'i-ph:check-circle-duotone text-codinit -elements-icon-success'
3939 : type === 'error'
40- ? 'i-ph:warning-duotone text-bolt -elements-button-danger-text'
41- : 'i-ph:info-duotone text-bolt -elements-loader-progress' ,
40+ ? 'i-ph:warning-duotone text-codinit -elements-button-danger-text'
41+ : 'i-ph:info-duotone text-codinit -elements-loader-progress' ,
4242 ) }
4343 > </ div >
4444 </ motion . div >
@@ -48,15 +48,15 @@ export default function DeployChatAlert({ alert, clearAlert, postMessage }: Depl
4848 initial = { { opacity : 0 } }
4949 animate = { { opacity : 1 } }
5050 transition = { { delay : 0.1 } }
51- className = { `text-sm font-medium text-bolt -elements-textPrimary` }
51+ className = { `text-sm font-medium text-codinit -elements-textPrimary` }
5252 >
5353 { title }
5454 </ motion . h3 >
5555 < motion . div
5656 initial = { { opacity : 0 } }
5757 animate = { { opacity : 1 } }
5858 transition = { { delay : 0.2 } }
59- className = { `mt-2 text-sm text-bolt -elements-textSecondary` }
59+ className = { `mt-2 text-sm text-codinit -elements-textSecondary` }
6060 >
6161 < p > { description } </ p >
6262
@@ -70,12 +70,12 @@ export default function DeployChatAlert({ alert, clearAlert, postMessage }: Depl
7070 className = { classNames (
7171 'w-6 h-6 rounded-full flex items-center justify-center' ,
7272 buildStatus === 'running'
73- ? 'bg-bolt -elements-loader-progress'
73+ ? 'bg-codinit -elements-loader-progress'
7474 : buildStatus === 'complete'
75- ? 'bg-bolt -elements-icon-success'
75+ ? 'bg-codinit -elements-icon-success'
7676 : buildStatus === 'failed'
77- ? 'bg-bolt -elements-button-danger-background'
78- : 'bg-bolt -elements-textTertiary' ,
77+ ? 'bg-codinit -elements-button-danger-background'
78+ : 'bg-codinit -elements-textTertiary' ,
7979 ) }
8080 >
8181 { buildStatus === 'running' ? (
@@ -95,7 +95,9 @@ export default function DeployChatAlert({ alert, clearAlert, postMessage }: Depl
9595 < div
9696 className = { classNames (
9797 'h-0.5 w-8' ,
98- buildStatus === 'complete' ? 'bg-bolt-elements-icon-success' : 'bg-bolt-elements-textTertiary' ,
98+ buildStatus === 'complete'
99+ ? 'bg-codinit-elements-icon-success'
100+ : 'bg-codinit-elements-textTertiary' ,
99101 ) }
100102 > </ div >
101103
@@ -105,12 +107,12 @@ export default function DeployChatAlert({ alert, clearAlert, postMessage }: Depl
105107 className = { classNames (
106108 'w-6 h-6 rounded-full flex items-center justify-center' ,
107109 deployStatus === 'running'
108- ? 'bg-bolt -elements-loader-progress'
110+ ? 'bg-codinit -elements-loader-progress'
109111 : deployStatus === 'complete'
110- ? 'bg-bolt -elements-icon-success'
112+ ? 'bg-codinit -elements-icon-success'
111113 : deployStatus === 'failed'
112- ? 'bg-bolt -elements-button-danger-background'
113- : 'bg-bolt -elements-textTertiary' ,
114+ ? 'bg-codinit -elements-button-danger-background'
115+ : 'bg-codinit -elements-textTertiary' ,
114116 ) }
115117 >
116118 { deployStatus === 'running' ? (
@@ -130,7 +132,7 @@ export default function DeployChatAlert({ alert, clearAlert, postMessage }: Depl
130132 ) }
131133
132134 { content && (
133- < div className = "text-xs text-bolt -elements-textSecondary p-2 bg-bolt -elements-background-depth-3 rounded mt-4 mb-4" >
135+ < div className = "text-xs text-codinit -elements-textSecondary p-2 bg-codinit -elements-background-depth-3 rounded mt-4 mb-4" >
134136 { content }
135137 </ div >
136138 ) }
@@ -140,7 +142,7 @@ export default function DeployChatAlert({ alert, clearAlert, postMessage }: Depl
140142 href = { url }
141143 target = "_blank"
142144 rel = "noopener noreferrer"
143- className = "text-bolt -elements-item-contentAccent hover:underline flex items-center"
145+ className = "text-codinit -elements-item-contentAccent hover:underline flex items-center"
144146 >
145147 < span className = "mr-1" > View deployed site</ span >
146148 < div className = "i-ph:arrow-square-out" > </ div >
@@ -164,10 +166,10 @@ export default function DeployChatAlert({ alert, clearAlert, postMessage }: Depl
164166 }
165167 className = { classNames (
166168 `px-2 py-1.5 rounded-md text-sm font-medium` ,
167- 'bg-bolt -elements-button-primary-background' ,
168- 'hover:bg-bolt -elements-button-primary-backgroundHover' ,
169- 'focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-bolt -elements-button-danger-background' ,
170- 'text-bolt -elements-button-primary-text' ,
169+ 'bg-codinit -elements-button-primary-background' ,
170+ 'hover:bg-codinit -elements-button-primary-backgroundHover' ,
171+ 'focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-codinit -elements-button-danger-background' ,
172+ 'text-codinit -elements-button-primary-text' ,
171173 'flex items-center gap-1.5' ,
172174 ) }
173175 >
@@ -179,10 +181,10 @@ export default function DeployChatAlert({ alert, clearAlert, postMessage }: Depl
179181 onClick = { clearAlert }
180182 className = { classNames (
181183 `px-2 py-1.5 rounded-md text-sm font-medium` ,
182- 'bg-bolt -elements-button-secondary-background' ,
183- 'hover:bg-bolt -elements-button-secondary-backgroundHover' ,
184- 'focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-bolt -elements-button-secondary-background' ,
185- 'text-bolt -elements-button-secondary-text' ,
184+ 'bg-codinit -elements-button-secondary-background' ,
185+ 'hover:bg-codinit -elements-button-secondary-backgroundHover' ,
186+ 'focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-codinit -elements-button-secondary-background' ,
187+ 'text-codinit -elements-button-secondary-text' ,
186188 ) }
187189 >
188190 Dismiss
0 commit comments