Update the color scheme to reflect the brand identity across the site
Refactors the primary color from rose/purple to teal in newsletter and auth components. Replit-Commit-Author: Agent Replit-Commit-Session-Id: acaf01d7-65a7-4fc5-901d-853488e196e8 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/18889347-ae06-4cf0-878b-26e3d92b0885.jpg
This commit is contained in:
parent
4054248cc0
commit
34e56eacea
|
|
@ -88,7 +88,7 @@ export function NewsletterSection() {
|
|||
<label className="flex items-center cursor-pointer">
|
||||
<input
|
||||
type="checkbox"
|
||||
className="form-checkbox h-4 w-4 border-gray-300 text-rose"
|
||||
className="form-checkbox h-4 w-4 border-gray-300 text-teal"
|
||||
checked={agreedToTerms}
|
||||
onChange={(e) => setAgreedToTerms(e.target.checked)}
|
||||
required
|
||||
|
|
@ -99,7 +99,7 @@ export function NewsletterSection() {
|
|||
|
||||
<button
|
||||
type="submit"
|
||||
className="w-full px-6 py-3 bg-rose text-white font-medium hover:bg-opacity-90 transition duration-300 flex items-center justify-center"
|
||||
className="w-full px-6 py-3 bg-teal text-white font-medium hover:bg-opacity-90 transition duration-300 flex items-center justify-center"
|
||||
disabled={newsletterMutation.isPending}
|
||||
>
|
||||
{newsletterMutation.isPending ? (
|
||||
|
|
|
|||
|
|
@ -221,7 +221,7 @@ export default function AuthPage() {
|
|||
/>
|
||||
<Button
|
||||
type="submit"
|
||||
className="w-full bg-purple text-white"
|
||||
className="w-full bg-teal text-white"
|
||||
disabled={registerMutation.isPending}
|
||||
>
|
||||
{registerMutation.isPending ? (
|
||||
|
|
|
|||
Loading…
Reference in New Issue