From 88b710b5f152e3be086e8a990e110c4533f0a2ad Mon Sep 17 00:00:00 2001 From: Simon East Date: Tue, 25 Jul 2023 20:50:00 +1000 Subject: [PATCH] Update extending-default-theme.md Minor correction, adding extra CSS variable, and correcting typo --- docs/guide/extending-default-theme.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/guide/extending-default-theme.md b/docs/guide/extending-default-theme.md index 035bf6bd..e0009719 100644 --- a/docs/guide/extending-default-theme.md +++ b/docs/guide/extending-default-theme.md @@ -37,7 +37,8 @@ The default theme CSS is customizable by overriding root level CSS variables. Th --vp-c-brand: #646cff; /* Lighter variation of brand color: - Typicaly used for the border of brand-colored buttons */ + Typically used for the border of brand-colored buttons */ + --vp-c-brand-light: #747bff; --vp-c-brand-lighter: #9da2fd; /* Darker variation of brand color: @@ -95,7 +96,7 @@ $brand-color: #646cff; --vp-c-brand: #{$brand-color}; // Lighter variation of brand color - // Typicaly used for the border of brand-colored buttons + // Typically used for the border of brand-colored buttons --vp-c-brand-lighter: #{lighten($brand-color, 10%)}; // Darker variation of brand color