Skip to content

Commit

Permalink
docs: Fix invalid CSS color (#1299)
Browse files Browse the repository at this point in the history
  • Loading branch information
Amitind authored Dec 22, 2024
1 parent 06c09e7 commit 2b07b4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/.vitepress/theme/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
--wxt-c-green-1: #0b8a00;
--wxt-c-green-2: #096600;
--wxt-c-green-3: #096600;
--wxt-c-green-soft: rgba(#0b8a00 / 0.14);
--wxt-c-green-soft: rgba(11, 138, 0, 0.14);
}

.dark {
--wxt-c-green-1: #67d45e;
--wxt-c-green-2: #329929;
--wxt-c-green-3: #21651b;
--wxt-c-green-soft: rgba(#67d45e / 0.14);
--wxt-c-green-soft: rgba(103, 212, 94, 0.14);
}

/* https://github.com/vuejs/vitepress/blob/main/src/client/theme-default/styles/vars.css */
Expand Down

0 comments on commit 2b07b4b

Please sign in to comment.