@@ -148,7 +148,7 @@ export class CommentEditor extends LitElement {
148148 protected override render ( ) {
149149 return html ` ${ this . loading ? html `<comment- edito r- skeleto n> </ comment- edito r- skeleto n> ` : '' }
150150 <div
151- class= "border rounded-md border-solid border-[var(--component-form-input-border-color)] focus-within:border-[var(--component-form-input-border-color-focus)] transition-all"
151+ class= "border rounded-md border-solid border-muted-1 focus-within:border-primary-1 transition-all"
152152 ?hidden= ${ this . loading }
153153 @click = ${ this . setFocus }
154154 >
@@ -171,7 +171,7 @@ export class CommentEditor extends LitElement {
171171 private renderActionItem ( item : ActionItem , editor ?: Editor ) {
172172 if ( item . type === 'separator' ) {
173173 return html `<li class= "flex items-center" aria-hidden = "true">
174- <div class= "w-1px bg-gray-100 rounded-full h-3" > </ div>
174+ <div class= "w-1px bg-muted-1 rounded-full h-3" > </ div>
175175 </ li> ` ;
176176 }
177177
@@ -184,7 +184,7 @@ export class CommentEditor extends LitElement {
184184 title= ${ item . displayName ?.( ) }
185185 @click = ${ ( ) => item . run ?.( editor ) }
186186 role= "button"
187- class = "size-7 hover:bg-gray-100 active:bg-gray-200 ${ isActive ? 'bg-gray-100 text-gray-900 ' : 'text-gray-500 hover:text-gray-900 ' } rounded-md flex items-center justify-center cursor-pointer"
187+ class = "size-7 hover:bg-muted-3 active:bg-muted-2 ${ isActive ? 'bg-muted-3 text-text-1 ' : 'text-text-3 hover:text-text-1 ' } rounded-md flex items-center justify-center cursor-pointer transition-all "
188188 >
189189 <i class= "size-5 ${ item . icon } " > </ i>
190190 </ div>
@@ -217,7 +217,7 @@ export class CommentEditor extends LitElement {
217217 }
218218
219219 .tiptap p .is-editor-empty : first-child ::before {
220- color : # adb5bd ;
220+ color : var ( --halo-cw-text-3-color , # 6B7280 ) ;
221221 content : attr (data-placeholder);
222222 float : left;
223223 height : 0 ;
0 commit comments