jetbrains

This commit is contained in:
2025-11-20 13:57:15 +08:00
parent a2cc3183c8
commit ad51dbef3e
4 changed files with 55 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
kbd {
padding: 0.2rem 0.4rem;
border: 1px solid #ccc;
border-radius: 3px;
background-color: #f5f5f5;
color: #333; /* 白天模式字体颜色 */
font-size: 0.9em;
}
.dark kbd {
border-color: #444;
background-color: #2d2d2d;
color: #e0e0e0; /* 暗黑模式浅色字体,提高对比度 */
}
+4
View File
@@ -0,0 +1,4 @@
import DefaultTheme from 'vitepress/theme'
import './custom.css'
export default DefaultTheme