diff --git a/docs/src/components/LanguageAlert/styles.module.css b/docs/src/components/LanguageAlert/styles.module.css index f8d1e8eb2..d41584934 100644 --- a/docs/src/components/LanguageAlert/styles.module.css +++ b/docs/src/components/LanguageAlert/styles.module.css @@ -1,13 +1,18 @@ .alert { - padding: 12px; - background: #fff8e6; - border-bottom: 1px solid #ffd166; - text-align: center; - font-size: 15px; - } - - .alert a { - color: #1890ff; - font-weight: 500; - margin-left: 6px; - } \ No newline at end of file + padding: 12px; + background: #fff8e6; + border-bottom: 1px solid #ffd166; + text-align: center; + font-size: 15px; +} + +[data-theme="dark"] .alert { + background: #3b2f0b; + border-bottom: 1px solid #665c22; +} + +.alert a { + color: #1890ff; + font-weight: 500; + margin-left: 6px; +}