@@ -6,13 +6,13 @@ interface EnterRaffleProps {
66
77const EnterRaffle = ( { handleEnterRaffle } : EnterRaffleProps ) => {
88 return (
9- < div className = "bg-[#11172E] border border-[#1F263F] rounded-[30px] w-full px-4 py-5 md:px-6 md:py-6 flex flex-col space-y-3" >
9+ < div className = "bg-white dark:bg- [#11172E] border border-gray-200 dark: border-[#1F263F] rounded-[30px] w-full px-4 py-5 md:px-6 md:py-6 flex flex-col space-y-3" >
1010 { /* Header */ }
1111 < div className = "flex items-center justify-between" >
1212 < p className = "text-[20px] md:text-[22px] font-semibold" >
1313 Enter Raffle
1414 </ p >
15- < span className = "bg-[#00E6CC33] px-3 py-1 text-[#00E6CC] text-[12px] rounded-full whitespace-nowrap" >
15+ < span className = "bg-[#00E6CC33] px-3 py-1 text-teal-600 dark:text- [#00E6CC] text-[12px] rounded-full whitespace-nowrap" >
1616 Max 100 per entry
1717 </ span >
1818 </ div >
@@ -23,18 +23,18 @@ const EnterRaffle = ({ handleEnterRaffle }: EnterRaffleProps) => {
2323 < div className = "flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between" >
2424 { /* Price block */ }
2525 < div className = "min-w-0" >
26- < p className = "text-xs text-[#9CA3AF]" > Price per ticket</ p >
26+ < p className = "text-xs text-gray-600 dark:text- [#9CA3AF]" > Price per ticket</ p >
2727 < p className = "text-[20px] md:text-[22px] font-medium" >
2828 0.05 ETH
2929 </ p >
30- < p className = "text-xs text-[#9CA3AF]" > ≈ $85.45 USD</ p >
30+ < p className = "text-xs text-gray-600 dark:text- [#9CA3AF]" > ≈ $85.45 USD</ p >
3131 </ div >
3232
3333 { /* Quantity controls - centered on mobile */ }
3434 < div className = "flex items-center justify-start sm:justify-end gap-3" >
3535 < button
3636 aria-label = "decrease"
37- className = "h-9 w-9 rounded-lg bg-[#00E6CC33] text-[#00E6CC] text-[18px] flex items-center justify-center hover:brightness-95"
37+ className = "h-9 w-9 rounded-lg bg-[#00E6CC33] text-teal-600 dark:text- [#00E6CC] text-[18px] flex items-center justify-center hover:brightness-95"
3838 >
3939 −
4040 </ button >
@@ -45,7 +45,7 @@ const EnterRaffle = ({ handleEnterRaffle }: EnterRaffleProps) => {
4545
4646 < button
4747 aria-label = "increase"
48- className = "h-9 w-9 rounded-lg bg-[#00E6CC33] text-[#00E6CC] text-[18px] flex items-center justify-center hover:brightness-95"
48+ className = "h-9 w-9 rounded-lg bg-[#00E6CC33] text-teal-600 dark:text- [#00E6CC] text-[18px] flex items-center justify-center hover:brightness-95"
4949 >
5050 +
5151 </ button >
@@ -56,7 +56,7 @@ const EnterRaffle = ({ handleEnterRaffle }: EnterRaffleProps) => {
5656
5757 { /* Total */ }
5858 < div className = "flex flex-col sm:flex-row sm:items-center sm:justify-between gap-2" >
59- < p className = "text-xs text-[#9CA3AF]" > Total</ p >
59+ < p className = "text-xs text-gray-600 dark:text- [#9CA3AF]" > Total</ p >
6060 < p className = "text-[14px] md:text-[14px] font-semibold" >
6161 0.05 ETH
6262 </ p >
@@ -66,7 +66,7 @@ const EnterRaffle = ({ handleEnterRaffle }: EnterRaffleProps) => {
6666 < div className = "w-full" >
6767 < button
6868 onClick = { handleEnterRaffle }
69- className = "w-full md:w-auto block px-8 py-3 md:px-10 md:py-4 rounded-xl text-white font-medium transition"
69+ className = "w-full md:w-auto block px-8 py-3 md:px-10 md:py-4 rounded-xl text-gray-900 dark:text- white font-medium transition"
7070 style = { {
7171 background :
7272 "linear-gradient(100.92deg, #A259FF 13.57%, #FF6250 97.65%)" ,
0 commit comments