@@ -134,7 +134,7 @@ export function TaskItem({
134134 /* Item Display */
135135 }
136136 return (
137- < div className = "task flex h-fit w-full min-w-[20rem] max-w-[48rem] flex-col gap-3 rounded-3xl bg-slate-900 p-5 text-slate-200 shadow-xl shadow-black/40" >
137+ < div className = "task flex h-fit w-full min-w-[20rem] max-w-[48rem] flex-col gap-3 rounded-3xl bg-indigo-500 p-5 text-slate-200 shadow-xl shadow-black/40" >
138138 < div className = "task-title-container flex w-full flex-row items-center justify-start gap-2 text-3xl font-bold text-slate-100 hover:text-slate-100" >
139139 { /* Task Name and Completion */ }
140140 < input
@@ -145,7 +145,7 @@ export function TaskItem({
145145 />
146146 { isEditing ? (
147147 < input
148- className = "task-title-edit w-full rounded-lg bg-indigo-400 px-3 py-1 brightness-90 hover:brightness-110"
148+ className = "task-title-edit w-full rounded-lg bg-indigo-600 px-3 py-1 brightness-90 hover:brightness-110"
149149 value = { draftName }
150150 onChange = { ( e ) => setDraftName ( e . target . value ) }
151151 />
@@ -176,7 +176,7 @@ export function TaskItem({
176176 item . times . map ( ( time ) => (
177177 < div
178178 key = { time . id }
179- className = "day-time-tags flex w-fit flex-row gap-3 rounded-full bg-indigo-400 px-3 py-1 hover:brightness-110"
179+ className = "day-time-tags flex w-fit flex-row gap-3 rounded-full bg-indigo-600 px-3 py-1 hover:brightness-110"
180180 >
181181 < DayTag day = { formatDay ( time . day ) } />
182182 < TimeTag start_time = { time . start_time } end_time = { time . end_time } />
@@ -219,7 +219,7 @@ export function TaskItem({
219219 Description
220220 </ h1 >
221221 < textarea
222- className = "w-full rounded-lg bg-indigo-400 p-1 brightness-90 hover:brightness-110"
222+ className = "w-full rounded-lg bg-indigo-600 p-1 brightness-90 hover:brightness-110"
223223 value = { draftDescription }
224224 rows = { 7 }
225225 onChange = { ( e ) => setDraftDescription ( e . target . value ) }
@@ -238,14 +238,14 @@ export function TaskItem({
238238 { isEditing ? (
239239 < div className = "flex w-full flex-row justify-center gap-2 text-lg" >
240240 < button
241- className = "rounded-full bg-indigo-400 px-3 py-1 hover:brightness-110"
241+ className = "rounded-full bg-indigo-600 px-3 py-1 hover:brightness-110"
242242 onClick = { saveEdit }
243243 disabled = { saving }
244244 >
245245 Save
246246 </ button >
247247 < button
248- className = "rounded-full bg-indigo-400 px-3 py-1 hover:brightness-110"
248+ className = "rounded-full bg-indigo-600 px-3 py-1 hover:brightness-110"
249249 onClick = { cancelEdit }
250250 >
251251 Cancel
0 commit comments