fix badge count bg color

This commit is contained in:
pat-s 2024-12-22 10:00:19 +01:00
parent 154c339bab
commit 45764476ac
No known key found for this signature in database
GPG key ID: 3C6318841EF78925
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,6 @@
<template>
<span
class="bg-wp-code-inline-100 text-wp-text-code-inline-100 hover:bg-wp-code-inline-200 inline-block px-1.5 py-0.5 rounded-full min-w-5 font-bold text-center text-xs leading-4"
class="bg-wp-code-inline-400 text-wp-text-code-inline-100 hover:bg-wp-code-inline-200 inline-block px-1.5 py-0.5 rounded-full min-w-5 font-bold text-center text-xs leading-4"
>
{{ value }}
</span>

View file

@ -63,6 +63,7 @@
--wp-background-300: theme('colors.int-wp-secondary.300');
--wp-background-400: theme('colors.int-wp-secondary.400');
--wp-background-500: theme('colors.int-wp-secondary.500');
--wp-background-600: theme('colors.int-wp-secondary.600');
--wp-text-100: theme('colors.gray.300');
--wp-text-200: theme('colors.gray.200');
@ -102,9 +103,10 @@
--wp-code-inline-100: theme('colors.int-wp-secondary.800');
--wp-code-inline-text-100: theme('colors.gray.300');
--wp-code-100: theme('colors.int-wp-secondary.700'); /* #383c4a */
--wp-code-100: theme('colors.int-wp-secondary.700'); /* #222631 */
--wp-code-200: theme('colors.int-wp-secondary.600'); /* #2a2e3a */
--wp-code-300: theme('colors.int-wp-secondary.800'); /* #1B1F28 */
--wp-code-400: theme('colors.int-wp-secondary.300'); /* #383c4a */
--wp-code-text-100: theme('colors.gray.200');
--wp-code-text-alt-100: theme('colors.gray.400');