Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,16 @@
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/tsconfig": "^3.9.2",
"@docusaurus/types": "^3.9.2",
"@tailwindcss/postcss": "^4.1.17",
"@tailwindcss/typography": "^0.5.19",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"autocorrect-node": "^2.14.0",
"markdownlint-cli2": "^0.18.1",
"swc-loader": "^0.2.6"
"swc-loader": "^0.2.6",
"typescript": "^5.9.3"
},
"browserslist": {
"production": [
Expand Down
47,801 changes: 20,556 additions & 27,245 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/css/ad.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ html[data-theme="dark"] .extern-item:hover {
/* 暗色模式 PC端 */
@media screen and (min-width: 996px) {
html[data-theme="dark"] .extern-item {
background-color: rgba(54, 192, 133, 0.1);
border: 1px solid var(--primary);
background-color: var(--primary-alpha-bg);
border: 1px solid var(--primary-alpha-border);
}

html[data-theme="dark"] .extern-item:hover {
Expand Down
3 changes: 0 additions & 3 deletions src/css/base/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
--primary: #36c085;
--primary-dark: #30b77c;
--primary-light: #4fd197;
--primary-alpha-light: rgba(54, 192, 133, 0.04);
--primary-alpha-medium: rgba(54, 192, 133, 0.08);
--primary-alpha-strong: rgba(54, 192, 133, 0.1);
--text-primary: #f7fafc;
--text-secondary: #e2e8f0;
--bg-light: #1e242c;
Expand Down
8 changes: 5 additions & 3 deletions src/css/base/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
--primary-light: #36c085;
--primary-alpha-light: rgba(37, 160, 110, 0.04);
--primary-alpha-medium: rgba(37, 160, 110, 0.08);
--primary-alpha-strong: rgba(37, 160, 110, 0.1);
--primary-alpha-strong: rgba(37, 160, 110, 0.14);
--primary-alpha-border: rgba(37, 160, 110, 0.6);
--primary-alpha-bg: rgba(37, 160, 110, 0.1);

--text-primary: #1a202c;
--text-secondary: #4a5568;
Expand All @@ -27,8 +29,8 @@
--transition-fast: 0.2s ease;
--transition-base: 0.3s ease;

--font-base:
-apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
--font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
sans-serif;
--font-mono: SFMono-Regular, Menlo, Monaco, Consolas, monospace;

--ifm-color-primary: var(--primary);
Expand Down
164 changes: 0 additions & 164 deletions src/pages/index.js

This file was deleted.

Loading
Loading