diff --git a/components/lib/tailwind/Tailwind.js b/components/lib/tailwind/Tailwind.js index f8a1a6d69..3e7fcb211 100644 --- a/components/lib/tailwind/Tailwind.js +++ b/components/lib/tailwind/Tailwind.js @@ -2044,15 +2044,15 @@ export default { dataview: { content: { class: [ - 'bg-white blue-gray-700 border-0 p-0', + 'bg-white blue-gray-700 border-0 p-0 text-gray-700', 'bg-gray-900 dark:text-white/80' // Dark Mode ] }, grid: { - class: 'flex flex-wrap ml-0 mr-0 mt-0' + class: 'flex flex-wrap ml-0 mr-0 mt-0 bg-white dark:bg-gray-900' }, header: { - class: 'bg-gray-100 text-blue-gray-800 border-gray-200 border-t border-b p-4 font-bold' + class: 'bg-gray-100 dark:bg-gray-800 text-blue-gray-800 text-gray-700 dark:text-white/80 border-gray-200 dark:border-blue-900/40 border-t border-b p-4 font-bold' } }, dataviewlayoutoptions: { diff --git a/doc/carousel/theming/UnstyledDoc.vue b/doc/carousel/theming/UnstyledDoc.vue index 70fb5fc31..295dcfe5a 100644 --- a/doc/carousel/theming/UnstyledDoc.vue +++ b/doc/carousel/theming/UnstyledDoc.vue @@ -3,9 +3,11 @@
Theming is implemented with the pass through properties in unstyled mode. Example below demonstrates the built-in Tailwind theme.
Theming is implemented with the pass through properties in unstyled mode. Example below demonstrates the built-in Tailwind theme.