1
0

config.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. :root {
  2. --vp-home-hero-name-color: #82dbc5;
  3. --vp-c-brand: #82dbc5;
  4. }
  5. /**
  6. * Component: Button
  7. * -------------------------------------------------------------------------- */
  8. :root {
  9. --vp-button-brand-border: var(--vp-c-brand-light);
  10. --vp-button-brand-text: var(--vp-c-text-dark-1);
  11. --vp-button-brand-bg: var(--vp-c-brand);
  12. --vp-button-brand-hover-border: var(--vp-c-brand-light);
  13. --vp-button-brand-hover-text: var(--vp-c-text-dark-1);
  14. --vp-button-brand-hover-bg: var(--vp-c-brand-light);
  15. --vp-button-brand-active-border: var(--vp-c-brand-light);
  16. --vp-button-brand-active-text: var(--vp-c-text-dark-1);
  17. --vp-button-brand-active-bg: var(--vp-button-brand-bg);
  18. --vp-button-alt-border: var(--vp-c-gray-light-3);
  19. --vp-button-alt-text: var(--vp-c-text-light-1);
  20. --vp-button-alt-bg: var(--vp-c-gray-light-5);
  21. --vp-button-alt-hover-border: var(--vp-c-gray-light-3);
  22. --vp-button-alt-hover-text: var(--vp-c-text-light-1);
  23. --vp-button-alt-hover-bg: var(--vp-c-gray-light-4);
  24. --vp-button-alt-active-border: var(--vp-c-gray-light-3);
  25. --vp-button-alt-active-text: var(--vp-c-text-light-1);
  26. --vp-button-alt-active-bg: var(--vp-c-gray-light-3);
  27. --vp-button-sponsor-border: var(--vp-c-gray-light-3);
  28. --vp-button-sponsor-text: var(--vp-c-text-light-2);
  29. --vp-button-sponsor-bg: transparent;
  30. --vp-button-sponsor-hover-border: var(--vp-c-sponsor);
  31. --vp-button-sponsor-hover-text: var(--vp-c-sponsor);
  32. --vp-button-sponsor-hover-bg: transparent;
  33. --vp-button-sponsor-active-border: var(--vp-c-sponsor);
  34. --vp-button-sponsor-active-text: var(--vp-c-sponsor);
  35. --vp-button-sponsor-active-bg: transparent;
  36. }
  37. .VPSidebar .link.active span {
  38. font-weight: bold;
  39. }
  40. .vp-doc a {
  41. text-decoration: dashed;
  42. font-weight: bold;
  43. }