diff --git a/src/components/Footer/index.tsx b/src/components/Footer/index.tsx
index 9326681..0bcebad 100644
--- a/src/components/Footer/index.tsx
+++ b/src/components/Footer/index.tsx
@@ -26,13 +26,13 @@ export function Footer() {
@@ -41,13 +41,13 @@ export function Footer() {
diff --git a/src/components/HighLightCard/index.tsx b/src/components/HighLightCard/index.tsx
index 96059d3..74c8108 100644
--- a/src/components/HighLightCard/index.tsx
+++ b/src/components/HighLightCard/index.tsx
@@ -14,7 +14,7 @@ const highLightCard = tv({
dark:bg-zinc-900 `,
icon: 'text-2.5xl',
textColor: 'text-gray-700 dark:text-white',
- date: 'text-sm text-gray-500 dark:text-gray-400',
+ date: 'text-sm text-gray-600 dark:text-gray-400',
},
variants: {
variant: {
diff --git a/src/components/Table/Data.tsx b/src/components/Table/Data.tsx
index 1d693d9..1f46dc0 100644
--- a/src/components/Table/Data.tsx
+++ b/src/components/Table/Data.tsx
@@ -2,7 +2,7 @@ import { ComponentProps } from 'react'
import { VariantProps, tv } from 'tailwind-variants'
const data = tv({
- base: 'flex text-gray-500 dark:text-gray-400 font-normal items-center truncate',
+ base: 'flex text-gray-600 dark:text-gray-400 font-normal items-center truncate',
variants: {
variant: {
description: `block text-gray-700 dark:text-white max-w-40 phone-md:max-w-68
diff --git a/src/components/Table/Head.tsx b/src/components/Table/Head.tsx
index f565b56..dcb2dd5 100644
--- a/src/components/Table/Head.tsx
+++ b/src/components/Table/Head.tsx
@@ -5,7 +5,7 @@ type HeadProps = ComponentProps<'th'>
export function Head({ className, ...props }: HeadProps) {
return (
|