Release v0.1.0: 小程序使用建议跳转腾讯文档 + 配置导入导出功能

This commit is contained in:
权益小助手开发
2026-05-04 17:09:07 +08:00
commit 7d90523164
89 changed files with 18289 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
import type { Config } from 'tailwindcss'
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
bg: {
primary: 'var(--bg-primary)',
sidebar: 'var(--bg-sidebar)',
card: 'var(--bg-card)',
input: 'var(--bg-input)',
hover: 'var(--bg-hover)',
},
border: {
DEFAULT: 'var(--border)',
},
accent: {
DEFAULT: 'var(--accent)',
hover: 'var(--accent-hover)',
},
cyan: {
DEFAULT: '#22D3EE',
},
status: {
pending: '#EF4444',
annotating: '#F59E0B',
generated: '#3B82F6',
fixed: '#22C55E',
closed: '#6B7280',
},
text: {
primary: 'var(--text-primary)',
secondary: 'var(--text-secondary)',
muted: 'var(--text-muted)',
},
},
fontFamily: {
sans: [
'PingFang SC',
'Microsoft YaHei',
'system-ui',
'-apple-system',
'sans-serif',
],
},
},
},
plugins: [],
} satisfies Config