mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-11 13:59:11 +08:00
fab90b09f4
* docs: put an example loading component
* fix: site issue
* fix: site issue
* feat: add loading
* feat: alert
* docs: rm ReactDOM.render in md
* docs: use style tag
* chore: update snapshot
* Revert "docs: use style tag"
This reverts commit 1f75a99f8c
.
* docs: update demo
* chore: update demo
Co-authored-by: PeachScript <scdzwyxst@gmail.com>
38 lines
1.2 KiB
Markdown
38 lines
1.2 KiB
Markdown
---
|
|
group: Global Styles
|
|
order: 6
|
|
title: Dark Mode
|
|
---
|
|
|
|
Dark mode is a theme where all UI elements are darkened.
|
|
|
|
## When to use
|
|
|
|
- Dark mode is recommended when you are in a dark environment as it prevents eye strain.
|
|
- Dark mode is great for highlighting important content
|
|
> It works similarly to turning off the lights in a movie theater.
|
|
|
|
## Design Principles
|
|
|
|
1. **Comfort of content**
|
|
|
|
Avoid using highly contrasting colors or content in dark mode. Continuous use will bring fatigue.
|
|
|
|
2. **Consistency of Information**
|
|
|
|
The information content in the dark mode needs to be consistent with the light mode, and the initialization hierarchical relationship should not be broken.
|
|
|
|
## Color
|
|
|
|
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 Palette
|
|
|
|
<ColorPalettes dark={true}></ColorPalettes>
|
|
|
|
### Color Palette Generator
|
|
|
|
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.
|
|
|
|
<ColorPaletteToolDark></ColorPaletteToolDark>
|