Skip to content

Commit

Permalink
Update theme colors to match Connect branding
Browse files Browse the repository at this point in the history
  • Loading branch information
robinbraemer committed Nov 29, 2023
1 parent 3c9a0ac commit 98615c8
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .web/docs/.vitepress/theme/styles/vars.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
* -------------------------------------------------------------------------- */

:root {
--vp-c-brand: #646cff;
--vp-c-brand-light: #747bff;
--vp-c-brand-lighter: #9499ff;
--vp-c-brand-lightest: #bcc0ff;
--vp-c-brand-dark: #535bf2;
--vp-c-brand-darker: #454ce1;
--vp-c-brand-dimm: rgba(100, 108, 255, 0.08);
--vp-c-brand: #F38020; /* orange */
--vp-c-brand-light: #F59A47; /* A lighter shade of orange */
--vp-c-brand-lighter: #F7B06E; /* An even lighter shade of orange */
--vp-c-brand-lightest: #F9C695; /* The lightest shade of orange */
--vp-c-brand-dark: #D26B1B; /* A darker shade of orange */
--vp-c-brand-darker: #B25816; /* The darkest shade of orange */
--vp-c-brand-dimm: rgba(243, 128, 32, 0.08); /* Dimmed orange */
}

/**
Expand All @@ -33,17 +33,19 @@
* -------------------------------------------------------------------------- */

:root {
--my-purple: #bd34fe;

--vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient(
120deg,
#bd34fe 30%,
#41d1ff
var(--vp-c-brand) 30%,
var(--my-purple)
);

--vp-home-hero-image-background-image: linear-gradient(
-45deg,
#bd34fe 50%,
#47caff 50%
var(--my-purple) 50%,
var(--vp-c-brand-light) 50%
);
--vp-home-hero-image-filter: blur(40px);
}
Expand Down

0 comments on commit 98615c8

Please sign in to comment.