diff --git a/docs/components/content/CardsExample.vue b/docs/components/content/CardsExample.vue index a6480bff..cab5b094 100644 --- a/docs/components/content/CardsExample.vue +++ b/docs/components/content/CardsExample.vue @@ -36,4 +36,8 @@ for (let i = 0; i < 5; i++) { flex-direction: column; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); } + +.dark .card { + background-color: rgb(31, 30, 28); +} diff --git a/docs/components/content/CardsPauseOnHover.vue b/docs/components/content/CardsPauseOnHover.vue index 988c5f37..25af547a 100644 --- a/docs/components/content/CardsPauseOnHover.vue +++ b/docs/components/content/CardsPauseOnHover.vue @@ -52,4 +52,17 @@ for (let i = 0; i < 5; i++) { background: rgb(226, 226, 226); box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); } + +.dark .card { + background-color: rgb(31, 30, 28); +} + +.dark .btn { + color: rgb(31, 30, 28); +} + +.dark .btn:hover { + background: rgb(46, 45, 43); + color: var(--docus-body-color); +} diff --git a/docs/components/content/CardsPauseOnHoverEmits.vue b/docs/components/content/CardsPauseOnHoverEmits.vue index 6387fad9..0440dad5 100644 --- a/docs/components/content/CardsPauseOnHoverEmits.vue +++ b/docs/components/content/CardsPauseOnHoverEmits.vue @@ -55,4 +55,21 @@ for (let i = 0; i < 5; i++) { background: rgb(226, 226, 226); box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); } + +.dark .card { + background: rgb(31, 30, 28); +} + +.dark .card { + background-color: rgb(31, 30, 28); +} + +.dark .btn { + color: var(--docus-body-color); +} + +.dark .btn:hover { + background: rgb(46, 45, 43); + color: var(--docus-body-color); +} diff --git a/docs/components/content/ImagesWithGradient.vue b/docs/components/content/ImagesWithGradient.vue index abe9ea17..86f33681 100644 --- a/docs/components/content/ImagesWithGradient.vue +++ b/docs/components/content/ImagesWithGradient.vue @@ -1,7 +1,7 @@