diff --git a/app/authenticate/page.tsx b/app/authenticate/page.tsx index d941f1a..42feb4b 100644 --- a/app/authenticate/page.tsx +++ b/app/authenticate/page.tsx @@ -65,7 +65,7 @@ function AuthForm() { type='email' required autoComplete='email' - className='w-full px-3 py-2 border border-border rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500' + className='w-full px-3 py-2 border border-border rounded-md focus:outline-none focus:ring-2 focus:ring-purple-500' /> @@ -80,7 +80,7 @@ function AuthForm() { required minLength={8} autoComplete={mode === 'signup' ? 'new-password' : 'current-password'} - className='w-full px-3 py-2 border border-border rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500' + className='w-full px-3 py-2 border border-border rounded-md focus:outline-none focus:ring-2 focus:ring-purple-500' /> @@ -93,7 +93,7 @@ function AuthForm() { @@ -103,14 +103,14 @@ function AuthForm() { {mode === 'signup' ? ( <> Already have an account?{' '} - + Sign in > ) : ( <> Don't have an account?{' '} - + Sign up > diff --git a/app/dashboard/page.tsx b/app/dashboard/page.tsx index 7e7358a..e8854a8 100644 --- a/app/dashboard/page.tsx +++ b/app/dashboard/page.tsx @@ -32,7 +32,7 @@ export default async function Dashboard() {
{state.error.title[0]}
} @@ -67,7 +67,7 @@ export function EditNoteForm({ note }: EditNoteFormProps) { diff --git a/app/notes/[id]/edit/page.tsx b/app/notes/[id]/edit/page.tsx index 047de3e..88d62f9 100644 --- a/app/notes/[id]/edit/page.tsx +++ b/app/notes/[id]/edit/page.tsx @@ -37,7 +37,7 @@ export default async function EditNotePage({ params }: { params: Params }) { return ({state.error.title[0]}
} @@ -55,7 +55,7 @@ export function NewNoteForm() { diff --git a/components/rich-text-editor.tsx b/components/rich-text-editor.tsx index 416abc5..7de87f0 100644 --- a/components/rich-text-editor.tsx +++ b/components/rich-text-editor.tsx @@ -116,7 +116,7 @@ export function RichTextEditor({ content, onUpdate }: RichTextEditorProps) { editorProps: { attributes: { class: - 'min-h-[200px] p-4 border border-border rounded-t-none rounded-b-lg focus:outline-none focus:ring-2 focus:ring-blue-500', + 'min-h-[200px] p-4 border border-border rounded-t-none rounded-b-lg focus:outline-none focus:ring-2 focus:ring-purple-500', }, }, }); diff --git a/components/share-toggle.tsx b/components/share-toggle.tsx index ca23877..5ca46ad 100644 --- a/components/share-toggle.tsx +++ b/components/share-toggle.tsx @@ -74,7 +74,7 @@ export function ShareToggle({ noteId, initialIsPublic, initialSlug }: ShareToggl