@@ -112,15 +112,15 @@ export function ForumPage() {
112112 if ( isLoading ) {
113113 return (
114114 < div className = "flex justify-center items-center py-20" >
115- < Loader2 className = "w-8 h-8 animate-spin text-blue-600 " />
115+ < Loader2 className = "w-8 h-8 animate-spin accent-text " />
116116 </ div > ) ;
117117
118118 }
119119 if ( error || ! forum ) {
120120 return (
121121 < div className = "text-center py-20" >
122122 < p className = "text-red-600 mb-4" > { error || 'Forum not found' } </ p >
123- < Link to = "/" className = "text-blue-600 hover:underline" >
123+ < Link to = "/" className = "link-accent hover:underline" >
124124 ← Back to { t ( 'boards' ) }
125125 </ Link >
126126 </ div > ) ;
@@ -133,7 +133,7 @@ export function ForumPage() {
133133 < div >
134134 < Link
135135 to = "/"
136- className = "text-sm text-blue-600 hover:underline mb-2 inline-block" >
136+ className = "text-sm link-accent hover:underline mb-2 inline-block" >
137137
138138 ← { t ( 'boards' ) }
139139 </ Link >
@@ -145,7 +145,7 @@ export function ForumPage() {
145145 { user &&
146146 < button
147147 onClick = { ( ) => setShowCreateModal ( true ) }
148- className = "flex items-center gap-2 px-4 py-2 bg-blue-600 hover:bg-blue-700 text-white text-sm font-medium rounded-md transition-colors whitespace-nowrap" >
148+ className = "flex items-center gap-2 px-4 py-2 btn-accent hover:opacity-90 text-white text-sm font-medium rounded-md transition-colors whitespace-nowrap" >
149149
150150 < Plus className = "w-4 h-4" />
151151 { t ( 'createTopic' ) }
@@ -187,7 +187,7 @@ export function ForumPage() {
187187 to = { `/topic/${ topic . id } ` }
188188 className = "block p-4 hover:bg-gray-50 dark:hover:bg-gray-750 transition-colors" >
189189
190- < h3 className = "text-lg font-medium text-blue-600 dark: text-blue-400 mb-2" >
190+ < h3 className = "text-lg font-medium accent- text mb-2" >
191191 { topic . title }
192192 </ h3 >
193193 < div className = "flex items-center gap-4 text-sm text-gray-500 dark:text-gray-400" >
0 commit comments