Skip to content

Commit

Permalink
fix: docs logo styles in light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
Wroud committed Jun 5, 2024
1 parent 07f05fa commit 326f809
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions packages/docs/.vitepress/theme/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@
hsl(260 100% 60%) 65%,
hsl(287, 58%, 47%)
);
--vp-home-hero-image-background-image: none;
--vp-home-hero-image-filter: blur(40px);

--vp-c-gray-light-3: #d1d1d1;
--vp-c-gray-light-5: #f2f2f2;
--vp-c-gray-dark-2: #484848;
--vp-c-gray-dark-3: #3a3a3a;
}

.dark {
--vp-home-hero-image-background-image: linear-gradient(
60deg,
hsl(233, 100%, 60%),
Expand All @@ -22,12 +32,6 @@
hsl(245, 100%, 60%) 60%,
hsl(304, 58%, 47%)
);
--vp-home-hero-image-filter: blur(40px);

--vp-c-gray-light-3: #d1d1d1;
--vp-c-gray-light-5: #f2f2f2;
--vp-c-gray-dark-2: #484848;
--vp-c-gray-dark-3: #3a3a3a;
}

@media (min-width: 640px) {
Expand Down

1 comment on commit 326f809

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.
Category Percentage Covered / Total
🟢 Statements 97.62% 534/547
🟢 Branches 95.37% 103/108
🟢 Functions 100% 35/35
🟢 Lines 97.62% 534/547

Test suite run success

86 tests passing in 8 suites.

Report generated by 🧪jest coverage report action from 326f809

Please sign in to comment.