@@ -101,7 +101,7 @@ export default function Navbar({ settings, sidebarBurgerColor = false }: NavbarP
101
101
< ul className = "hidden lg:block relative self-center text-surface-text-primary" >
102
102
< NavItem to = "/bounties" > { t ( "nav.bounties" ) } </ NavItem >
103
103
< NavItem to = { "/communities" } > { t ( "nav.communities" ) } </ NavItem >
104
- < button type = "button" className = "nav-item underline underline-offset-2 text-primary bg-transparent p-0 capitalize" onClick = { displayJobOffersPopup } >
104
+ < button type = "button" className = "nav-item underline underline-offset-2 text-brand bg-transparent p-0 capitalize" onClick = { displayJobOffersPopup } >
105
105
{ t ( "job.offers.title" ) }
106
106
</ button >
107
107
</ ul >
@@ -129,7 +129,7 @@ export default function Navbar({ settings, sidebarBurgerColor = false }: NavbarP
129
129
< NavItem type = "item" to = "/login" >
130
130
< span
131
131
className = { classNames ( "py-2 text-sm" , {
132
- "text-primary " : router . pathname === "/signup" ,
132
+ "text-brand " : router . pathname === "/signup" ,
133
133
inherit : router . pathname !== "/signup" ,
134
134
} ) }
135
135
>
@@ -143,7 +143,7 @@ export default function Navbar({ settings, sidebarBurgerColor = false }: NavbarP
143
143
{ router . pathname === "/login" && < span className = "text-sm" > { t ( "nav.signin.new-accout" ) } </ span > }
144
144
< NavItem type = "item" to = "/signup" >
145
145
{ router . pathname === "/login" ? (
146
- < span className = "py-2 text-sm text-primary " > { t ( "nav.sign-up" ) } </ span >
146
+ < span className = "py-2 text-sm text-brand " > { t ( "nav.sign-up" ) } </ span >
147
147
) : (
148
148
< Button
149
149
variant = "secondary"
@@ -154,7 +154,7 @@ export default function Navbar({ settings, sidebarBurgerColor = false }: NavbarP
154
154
rounded = { false }
155
155
onClick = { ( ) => null }
156
156
className = { classNames ( "text-sm py-2" , {
157
- "text-primary " : router . pathname === "/login" ,
157
+ "text-brand " : router . pathname === "/login" ,
158
158
"text-gray-900" : router . pathname !== "/login" ,
159
159
} ) }
160
160
>
0 commit comments