From 83d76f72da396e37a0486595a628018ce9744c58 Mon Sep 17 00:00:00 2001 From: Brianna-Flo <145514791+Brianna-Flo@users.noreply.github.com> Date: Tue, 22 Oct 2024 16:00:14 -0500 Subject: [PATCH] chore: One red color of #D10000 (#377) * chore: change UTRP red color * chore: change UTRP Red * chore: change red update * chore: utrp red, consistent capitalization --------- Co-authored-by: Samuel Gunter --- src/shared/types/ThemeColors.ts | 3 +-- src/views/components/common/MigrationDialog.tsx | 2 +- src/views/components/common/ScheduleListItem.tsx | 4 ++-- src/views/components/settings/Settings.tsx | 10 +++++----- src/views/styles/colors.module.scss | 2 +- 5 files changed, 10 insertions(+), 11 deletions(-) diff --git a/src/shared/types/ThemeColors.ts b/src/shared/types/ThemeColors.ts index b897b70c..a0a9005e 100644 --- a/src/shared/types/ThemeColors.ts +++ b/src/shared/types/ThemeColors.ts @@ -15,10 +15,9 @@ export const colors = { gray: '#9CADB7', offwhite: '#D6D2C4', concrete: '#95A5A6', - red: '#d10000', // Not sure if this should be here, but it's used for remove course, and add course is ut-green }, theme: { - red: '#BF0000', + red: '#D10000', black: '#1A2024', }, } as const satisfies Record>; diff --git a/src/views/components/common/MigrationDialog.tsx b/src/views/components/common/MigrationDialog.tsx index c639c790..fc005335 100644 --- a/src/views/components/common/MigrationDialog.tsx +++ b/src/views/components/common/MigrationDialog.tsx @@ -47,7 +47,7 @@ function MigrationButtons({ close }: { close: () => void }): JSX.Element { return ( <> {error && ( - + An error occurred while migrating your courses. Please try again later in settings. ( {error.substring(0, 8)}) diff --git a/src/views/components/common/ScheduleListItem.tsx b/src/views/components/common/ScheduleListItem.tsx index e454f545..70672b15 100644 --- a/src/views/components/common/ScheduleListItem.tsx +++ b/src/views/components/common/ScheduleListItem.tsx @@ -92,7 +92,7 @@ export default function ScheduleListItem({ schedule, dragHandleProps, onClick }: