Skip to content

Commit b53c34d

Browse files
pri1311roboquat
authored andcommitted
Improve label colors on dashboard integrations for the dark theme
1 parent 53eaef2 commit b53c34d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

components/dashboard/src/settings/Integrations.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -291,15 +291,15 @@ function GitProviders() {
291291
</ItemFieldIcon>
292292
<ItemField className="w-4/12 xl:w-3/12 flex flex-col my-auto">
293293
<span className="my-auto font-medium truncate overflow-ellipsis">{ap.authProviderType}</span>
294-
<span className="text-sm my-auto text-gray-400 truncate overflow-ellipsis">{ap.host}</span>
294+
<span className="text-sm my-auto text-gray-400 truncate overflow-ellipsis dark:text-gray-500">{ap.host}</span>
295295
</ItemField>
296296
<ItemField className="w-6/12 xl:w-3/12 flex flex-col my-auto">
297-
<span className="my-auto truncate text-gray-500 overflow-ellipsis">{getUsername(ap.authProviderId) || "–"}</span>
298-
<span className="text-sm my-auto text-gray-400">Username</span>
297+
<span className="my-auto truncate text-gray-500 overflow-ellipsis dark:text-gray-400">{getUsername(ap.authProviderId) || "–"}</span>
298+
<span className="text-sm my-auto text-gray-400 dark:text-gray-500">Username</span>
299299
</ItemField>
300300
<ItemField className="hidden xl:w-5/12 xl:flex xl:flex-col my-auto">
301-
<span className="my-auto truncate text-gray-500 overflow-ellipsis">{getPermissions(ap.authProviderId)?.join(", ") || "–"}</span>
302-
<span className="text-sm my-auto text-gray-400">Permissions</span>
301+
<span className="my-auto truncate text-gray-500 overflow-ellipsis dark:text-gray-400">{getPermissions(ap.authProviderId)?.join(", ") || "–"}</span>
302+
<span className="text-sm my-auto text-gray-400 dark:text-gray-500">Permissions</span>
303303
</ItemField>
304304
<ItemFieldContextMenu menuEntries={gitProviderMenu(ap)} />
305305
</Item>
@@ -375,7 +375,7 @@ function GitIntegrations() {
375375
<div className="flex items-start sm:justify-between mb-2">
376376
<div>
377377
<h3>Git Integrations</h3>
378-
<h2 className="text-gray-500">Manage Git integrations for GitLab or GitHub self-hosted instances.</h2>
378+
<h2>Manage Git integrations for GitLab or GitHub self-hosted instances.</h2>
379379
</div>
380380
{providers.length !== 0
381381
?

0 commit comments

Comments
 (0)