Fix typo for 'palette' (#27758)

This commit is contained in:
Dominique Ng 2020-11-13 19:07:05 +08:00 committed by GitHub
parent a7e3812d02
commit 5b46a49ce5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ The information content in the dark mode needs to be consistent with the light m
In the application of colors, we are based on 12 sets of basic swatches and combine longer rule processing to make colors better blend under different environmental colors.
### Color Pallete
### Color Palette
```__react
import ColorPalettes from '../../site/theme/template/Color/ColorPalettes';
@ -34,9 +34,9 @@ import ColorPalettes from '../../site/theme/template/Color/ColorPalettes';
ReactDOM.render(<ColorPalettes dark />, mountNode);
```
### Color Pallete Generator
### Color Palette Generator
Additionally, we also provide a set of tools for generating color palletes in dark colors. You need to select your primary color and the background color of the page. We will generate a dark mode color pallete for you.
Additionally, we also provide a set of tools for generating color palettes in dark colors. You need to select your primary color and the background color of the page. We will generate a dark mode color palette for you.
```__react
import ColorPaletteToolDark from '../../site/theme/template/Color/ColorPaletteToolDark';