lighten forced codebox bg color

This commit is contained in:
pat-s 2024-12-22 12:12:15 +01:00
parent 1cb006844d
commit 6fcfd0d5d6
No known key found for this signature in database
GPG key ID: 3C6318841EF78925
8 changed files with 8 additions and 8 deletions

View file

@ -3,7 +3,7 @@
<ListItem
v-for="agent in props.agents"
:key="agent.id"
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200"
class="items-center !bg-wp-background-200 !dark:bg-wp-background-200"
>
<span>{{ agent.name || `Agent ${agent.id}` }}</span>
<span class="ml-auto">

View file

@ -3,7 +3,7 @@
<ListItem
v-for="registry in registries"
:key="registry.id"
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200"
class="items-center !bg-wp-background-200 !dark:bg-wp-background-200"
>
<span>{{ registry.address }}</span>
<IconButton

View file

@ -3,7 +3,7 @@
<ListItem
v-for="secret in secrets"
:key="secret.id"
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200"
class="items-center !bg-wp-background-200 !dark:bg-wp-background-200"
>
<span>{{ secret.name }}</span>
<Badge

View file

@ -4,7 +4,7 @@
<ListItem
v-for="org in orgs"
:key="org.id"
class="items-center gap-2 !bg-wp-background-300 !dark:bg-wp-background-200"
class="items-center gap-2 !bg-wp-background-200 !dark:bg-wp-background-200"
>
<span>{{ org.name }}</span>
<IconButton

View file

@ -29,7 +29,7 @@
<ListItem
v-for="task in tasks"
:key="task.id"
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200 mb-2"
class="items-center !bg-wp-background-200 !dark:bg-wp-background-200 mb-2"
>
<div
class="flex items-center"

View file

@ -13,7 +13,7 @@
<ListItem
v-for="repo in repos"
:key="repo.id"
class="items-center gap-2 !bg-wp-background-300 !dark:bg-wp-background-200"
class="items-center gap-2 !bg-wp-background-200 !dark:bg-wp-background-200"
>
<span>{{ repo.full_name }}</span>
<div class="flex items-center ml-auto">

View file

@ -14,7 +14,7 @@
<ListItem
v-for="user in users"
:key="user.id"
class="items-center gap-2 !bg-wp-background-300 !dark:bg-wp-background-200"
class="items-center gap-2 !bg-wp-background-200 !dark:bg-wp-background-200"
>
<img v-if="user.avatar_url" class="rounded-md h-6" :src="user.avatar_url" />
<span>{{ user.login }}</span>

View file

@ -18,7 +18,7 @@
<ListItem
v-for="cron in crons"
:key="cron.id"
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200"
class="items-center !bg-wp-background-200 !dark:bg-wp-background-200"
>
<span class="grid grid-cols-3 w-full">
<span>{{ cron.name }}</span>