style.css 531 B

1234567891011121314151617181920212223242526272829303132
  1. :root {
  2. --bg: #f5f7fa;
  3. --panel: #ffffff;
  4. --panel-2: #f0f3f8;
  5. --border: #e2e6ee;
  6. --text: #1f2733;
  7. --muted: #8a94a6;
  8. --primary: #4f8cff;
  9. --primary-2: #3b6fd6;
  10. --user-bubble: #dbe8ff;
  11. --assistant-bubble: #ffffff;
  12. --tool-bubble: #f3eefe;
  13. --danger: #e5484d;
  14. }
  15. * {
  16. box-sizing: border-box;
  17. }
  18. html,
  19. body,
  20. #app {
  21. height: 100%;
  22. margin: 0;
  23. }
  24. body {
  25. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC',
  26. 'Microsoft YaHei', sans-serif;
  27. background: var(--bg);
  28. color: var(--text);
  29. }