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() {

Dashboard

New Note diff --git a/app/notes/[id]/edit/edit-note-form.tsx b/app/notes/[id]/edit/edit-note-form.tsx index 66c005d..9ad0b2e 100644 --- a/app/notes/[id]/edit/edit-note-form.tsx +++ b/app/notes/[id]/edit/edit-note-form.tsx @@ -45,7 +45,7 @@ export function EditNoteForm({ note }: EditNoteFormProps) { name='title' required defaultValue={note.title} - className='w-full px-3 py-2 border border-border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500' + className='w-full px-3 py-2 border border-border rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500' placeholder='Enter note title...' /> {state?.error?.title &&

{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 (
- + ← Back to Note diff --git a/app/notes/[id]/note-actions.tsx b/app/notes/[id]/note-actions.tsx index 871cb15..9a97274 100644 --- a/app/notes/[id]/note-actions.tsx +++ b/app/notes/[id]/note-actions.tsx @@ -16,7 +16,7 @@ export function NoteActions({ noteId }: NoteActionsProps) {
Edit diff --git a/app/notes/[id]/page.tsx b/app/notes/[id]/page.tsx index e461d89..79939b1 100644 --- a/app/notes/[id]/page.tsx +++ b/app/notes/[id]/page.tsx @@ -42,7 +42,7 @@ export default async function NoteViewer({ params }: { params: Params }) { return (
- + ← Back to Dashboard diff --git a/app/notes/new/new-note-form.tsx b/app/notes/new/new-note-form.tsx index c34b359..284b9a9 100644 --- a/app/notes/new/new-note-form.tsx +++ b/app/notes/new/new-note-form.tsx @@ -34,7 +34,7 @@ export function NewNoteForm() { id='title' name='title' required - className='w-full px-3 py-2 border border-border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500' + className='w-full px-3 py-2 border border-border rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500' placeholder='Enter note title...' /> {state?.error?.title &&

{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