| 1234567891011121314151617181920212223242526272829303132 |
- :root {
- --bg: #f5f7fa;
- --panel: #ffffff;
- --panel-2: #f0f3f8;
- --border: #e2e6ee;
- --text: #1f2733;
- --muted: #8a94a6;
- --primary: #4f8cff;
- --primary-2: #3b6fd6;
- --user-bubble: #dbe8ff;
- --assistant-bubble: #ffffff;
- --tool-bubble: #f3eefe;
- --danger: #e5484d;
- }
- * {
- box-sizing: border-box;
- }
- html,
- body,
- #app {
- height: 100%;
- margin: 0;
- }
- body {
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC',
- 'Microsoft YaHei', sans-serif;
- background: var(--bg);
- color: var(--text);
- }
|