We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e18a874 commit 0a2cf0aCopy full SHA for 0a2cf0a
web/components/Notifications/Item.vue
@@ -100,7 +100,7 @@ const reformattedTimestamp = computed<string>(() => {
100
class="shrink-0 flex flex-row items-baseline justify-end gap-2 mt-1"
101
:title="formattedTimestamp ?? reformattedTimestamp"
102
>
103
- <p class="text-gray-500 text-sm">{{ reformattedTimestamp }}</p>
+ <p class="text-secondary-foreground text-sm">{{ reformattedTimestamp }}</p>
104
</div>
105
</header>
106
web/components/Notifications/List.vue
@@ -80,7 +80,7 @@ async function onLoadMore() {
80
<div v-if="loading" class="py-5 grid place-content-center">
81
<LoadingSpinner />
82
83
- <div v-if="!canLoadMore" class="py-5 grid place-content-center text-gray-500">
+ <div v-if="!canLoadMore" class="py-5 grid place-content-center text-secondary-foreground">
84
You've reached the end...
85
86
web/store/theme.ts
@@ -37,7 +37,7 @@ export const defaultColors: Record<string, ThemeVariables> = {
37
'--primary': '24 100% 50%',
38
'--primary-foreground': '0 0% 98%',
39
'--secondary': '0 0% 14.9%',
40
- '--secondary-foreground': '0 0% 98%',
+ '--secondary-foreground': '0 0% 77%',
41
'--accent': '0 0% 14.9%',
42
'--accent-foreground': '0 0% 98%',
43
'--destructive': '0 62.8% 30.6%',
@@ -61,7 +61,7 @@ export const defaultColors: Record<string, ThemeVariables> = {
61
62
63
'--secondary': '0 0% 96.1%',
64
- '--secondary-foreground': '0 0% 9%',
+ '--secondary-foreground': '0 0% 45%',
65
'--accent': '0 0% 96.1%',
66
'--accent-foreground': '0 0% 9%',
67
'--destructive': '0 84.2% 60.2%',
0 commit comments