Skip to content

Commit

Permalink
change color of <a> tag
Browse files Browse the repository at this point in the history
  • Loading branch information
cctdaniel committed Feb 27, 2024
1 parent e733ec5 commit c9bb2dc
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion frontend/middleware.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,19 @@ export function middleware(req) {
color: #E6DAFE;
max-width: 900px;
}
a {
color: #C792EA; /* Light purple, for better visibility */
text-decoration: none; /* Optional: removes underline */
}
a:hover {
color: #FFCB6B; /* Changes color on hover for interactivity */
text-decoration: underline; /* Optional: adds underline on hover */
}
</style>
</head>
<body>
<h1>The airdrop claim period has ended</h1>
<p>To stay in touch with future Pyth community initiatives head over to our <a href="https://discord.gg/invite/PythNetwork">Discord</a> </p>
<p>To stay in touch with future Pyth community initiatives head over to our <a href="https://discord.gg/invite/PythNetwork">Discord</a></p>
</body>
</html>
`
Expand Down

0 comments on commit c9bb2dc

Please sign in to comment.