= ({ step }): ReactElem
className={`w-10 h-10 rounded-full flex items-center justify-center border-2 ${
isActive
? "bg-gradient-to-b from-purple-600 to-blue-500 text-white border-transparent"
- : "bg-white text-gray-700 border-blue-400"
+ : "bg-white text-neutral-700 border-blue-400"
}`}
>
{currentStep}
diff --git a/libs/ui/src/organisms/backoffice-sidebar/backoffice-sidebar.tsx b/libs/ui/src/organisms/backoffice-sidebar/backoffice-sidebar.tsx
index 676dce0..b537aa3 100644
--- a/libs/ui/src/organisms/backoffice-sidebar/backoffice-sidebar.tsx
+++ b/libs/ui/src/organisms/backoffice-sidebar/backoffice-sidebar.tsx
@@ -29,7 +29,7 @@ export const BackofficeSidebar: FC = (): ReactElement => {
className={`flex items-center justify-items-start gap-3 px-[8px] py-[10px] ${
isActive('/dashboard')
? 'bg-primary-500 text-white rounded-md'
- : 'text-gray-700 hover:bg-gray-100'
+ : 'text-neutral-700 hover:bg-neutral-100'
}`}
>
@@ -41,7 +41,7 @@ export const BackofficeSidebar: FC = (): ReactElement => {
className={`flex items-center justify-items-start gap-3 px-[8px] py-[10px] ${
isActive('/gacha-roll')
? 'bg-primary-500 text-white rounded-md'
- : 'text-gray-700 hover:bg-gray-100'
+ : 'text-neutral-700 hover:bg-neutral-100'
}`}
>
@@ -53,7 +53,7 @@ export const BackofficeSidebar: FC = (): ReactElement => {
className={`flex items-center justify-items-start gap-3 px-[8px] py-[10px] ${
isActive('/permissions')
? 'bg-primary-500 text-white rounded-md'
- : 'text-gray-700 hover:bg-gray-100'
+ : 'text-neutral-700 hover:bg-neutral-100'
}`}
>
@@ -65,7 +65,7 @@ export const BackofficeSidebar: FC = (): ReactElement => {
className={`flex items-center justify-items-start gap-3 px-[8px] py-[10px] ${
isActive('/roles')
? 'bg-primary-500 text-white rounded-md'
- : 'text-gray-700 hover:bg-gray-100'
+ : 'text-neutral-700 hover:bg-neutral-100'
}`}
>
@@ -77,7 +77,7 @@ export const BackofficeSidebar: FC = (): ReactElement => {
className={`flex items-center justify-items-start gap-3 px-[8px] py-[10px] ${
isActive('/accounts')
? 'bg-primary-500 text-white rounded-md'
- : 'text-gray-700 hover:bg-gray-100'
+ : 'text-neutral-700 hover:bg-neutral-100'
}`}
>
@@ -89,7 +89,7 @@ export const BackofficeSidebar: FC = (): ReactElement => {
className={`flex items-center justify-items-start gap-3 px-[8px] py-[10px] ${
isActive('/transactions')
? 'bg-primary-500 text-white rounded-md'
- : 'text-gray-700 hover:bg-gray-100'
+ : 'text-neutral-700 hover:bg-neutral-100'
}`}
>
@@ -101,7 +101,7 @@ export const BackofficeSidebar: FC = (): ReactElement => {
className={`flex items-center justify-items-start gap-3 px-[8px] py-[10px] ${
isActive('/prizes')
? 'bg-primary-500 text-white rounded-md'
- : 'text-gray-700 hover:bg-gray-100'
+ : 'text-neutral-700 hover:bg-neutral-100'
}`}
>
@@ -115,7 +115,7 @@ export const BackofficeSidebar: FC = (): ReactElement => {