From 5b7c366613edfcf87ea15a68a7cf7085271ccf89 Mon Sep 17 00:00:00 2001 From: Deep Patel Date: Mon, 22 Apr 2024 22:05:28 -0400 Subject: [PATCH] more css touches --- components/ActiveTasks.js | 2 +- styles/ActiveTasksStyle.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/components/ActiveTasks.js b/components/ActiveTasks.js index 92f33a96..49de8ffb 100644 --- a/components/ActiveTasks.js +++ b/components/ActiveTasks.js @@ -16,7 +16,7 @@ const ActiveTasks = ({ userID }) => { { label: 'School', color: '#FFA07A' }, { label: 'Work', color: '#20B2AA' }, { label: 'Personal', color: '#778899' }, - { label: 'Gym', color: '#FFD700' }, + { label: 'Gym', color: '#ccac02' }, ]); const [currentMonthOnly, setCurrentMonthOnly] = useState(false); const { theme } = useTheme(); diff --git a/styles/ActiveTasksStyle.js b/styles/ActiveTasksStyle.js index 46fdc8c6..88a4a1db 100644 --- a/styles/ActiveTasksStyle.js +++ b/styles/ActiveTasksStyle.js @@ -26,6 +26,8 @@ const getStyles = (theme) => StyleSheet.create({ }, labelText: { color: 'white', + fontWeight: '800', + fontSize: 16, }, title: { color: theme === 'dark' ? 'white' : 'black',