2025-09-06 16:21:21 +08:00
|
|
|
@import "tailwindcss";
|
|
|
|
|
|
|
|
|
|
/* Linear 风格的全局配色和基础样式 */
|
|
|
|
|
:root {
|
|
|
|
|
/* Linear 配色方案 */
|
|
|
|
|
--color-bg-primary: #fafafa;
|
|
|
|
|
--color-bg-secondary: #ffffff;
|
|
|
|
|
--color-bg-tertiary: #f4f4f5;
|
|
|
|
|
--color-border: #e4e4e7;
|
|
|
|
|
--color-border-hover: #d4d4d8;
|
|
|
|
|
|
|
|
|
|
/* 蓝色主色调 */
|
|
|
|
|
--color-primary: #3498db;
|
|
|
|
|
--color-primary-hover: #2980b9;
|
|
|
|
|
--color-primary-light: #5dade2;
|
|
|
|
|
|
|
|
|
|
/* 文本颜色 */
|
|
|
|
|
--color-text-primary: #18181b;
|
|
|
|
|
--color-text-secondary: #71717a;
|
|
|
|
|
--color-text-tertiary: #a1a1aa;
|
|
|
|
|
|
|
|
|
|
/* 状态颜色 */
|
|
|
|
|
--color-success: #10b981;
|
|
|
|
|
--color-success-light: #d1fae5;
|
|
|
|
|
--color-error: #ef4444;
|
|
|
|
|
--color-error-light: #fee2e2;
|
|
|
|
|
--color-warning: #f59e0b;
|
|
|
|
|
--color-warning-light: #fef3c7;
|
|
|
|
|
|
|
|
|
|
/* 阴影 */
|
|
|
|
|
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
|
|
|
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
|
|
|
--shadow-lg:
|
|
|
|
|
0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
|
|
|
|
|
|
|
|
/* 圆角 */
|
|
|
|
|
--radius-sm: 0.375rem;
|
|
|
|
|
--radius-md: 0.5rem;
|
|
|
|
|
--radius-lg: 0.75rem;
|
|
|
|
|
|
|
|
|
|
/* 字体 */
|
|
|
|
|
--font-family:
|
|
|
|
|
-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue",
|
|
|
|
|
Arial, sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-04 22:16:26 +08:00
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-06 16:21:21 +08:00
|
|
|
html {
|
|
|
|
|
font-family: var(--font-family);
|
|
|
|
|
line-height: 1.5;
|
2025-08-04 22:16:26 +08:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-06 16:21:21 +08:00
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
background-color: var(--color-bg-primary);
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 滚动条样式 */
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
2025-08-10 19:13:45 +08:00
|
|
|
}
|
|
|
|
|
|
2025-09-06 16:21:21 +08:00
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
background: var(--color-bg-tertiary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
background: var(--color-border-hover);
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: var(--color-text-tertiary);
|
|
|
|
|
}
|
2025-08-10 19:13:45 +08:00
|
|
|
|
2025-09-06 16:21:21 +08:00
|
|
|
/* 焦点样式 */
|
|
|
|
|
*:focus-visible {
|
|
|
|
|
outline: 2px solid var(--color-primary);
|
|
|
|
|
outline-offset: 2px;
|
2025-08-10 19:13:45 +08:00
|
|
|
}
|