diff --git a/e2e/time.spec.ts b/e2e/time.spec.ts
index fbcb500d..8764d0d3 100644
--- a/e2e/time.spec.ts
+++ b/e2e/time.spec.ts
@@ -53,7 +53,7 @@ test('test that starting and stopping an empty time entry shows a new time entry
// Test that description update works
async function assertThatTimeEntryRowIsStopped(newTimeEntry: Locator) {
- await expect(newTimeEntry.getByTestId('timer_button')).toHaveClass(/bg-accent-300\/70/);
+ await expect(newTimeEntry.getByTestId('timer_button')).toHaveClass(/bg-tertiary/);
}
test('test that updating a description of a time entry in the overview works on blur', async ({
@@ -224,7 +224,7 @@ test('test that starting a time entry from the overview works', async ({ page })
const newTimeEntry = timeEntryRows.first();
const startButton = newTimeEntry.getByTestId('timer_button');
- await expect(startButton).toHaveClass(/bg-accent-300\/70/);
+ await expect(startButton).toHaveClass(/bg-tertiary/);
await Promise.all([
page.waitForResponse(async (response) => {
diff --git a/resources/js/Components/CurrentSidebarTimer.vue b/resources/js/Components/CurrentSidebarTimer.vue
index 3aede042..f5ea33d9 100644
--- a/resources/js/Components/CurrentSidebarTimer.vue
+++ b/resources/js/Components/CurrentSidebarTimer.vue
@@ -51,6 +51,7 @@ const isRunningInDifferentOrganization = computed(() => {
diff --git a/resources/js/Components/Dashboard/RecentlyTrackedTasksCardEntry.vue b/resources/js/Components/Dashboard/RecentlyTrackedTasksCardEntry.vue
index f6dca4b4..8473165d 100644
--- a/resources/js/Components/Dashboard/RecentlyTrackedTasksCardEntry.vue
+++ b/resources/js/Components/Dashboard/RecentlyTrackedTasksCardEntry.vue
@@ -66,7 +66,9 @@ async function startTaskTimer() {