manual-dark.css 666 B

123456789101112131415161718192021222324252627
  1. html[data-theme="dark"] {
  2. --color-chatbot-bg: linear-gradient(
  3. 180deg,
  4. rgba(34, 34, 37, 0.9) 0%,
  5. rgba(29, 29, 32, 0.9) 90.48%
  6. );
  7. --color-chat-bubble-bg: linear-gradient(
  8. 180deg,
  9. rgba(200, 206, 218, 0.08) 0%,
  10. rgba(200, 206, 218, 0.02) 100%
  11. );
  12. --color-workflow-process-bg: linear-gradient(
  13. 90deg,
  14. rgba(24, 24, 27, 0.25) 0%,
  15. rgba(24, 24, 27, 0.04) 100%
  16. );
  17. --color-account-teams-bg: linear-gradient(
  18. 271deg,
  19. rgba(34, 34, 37, 0.9) -0.1%,
  20. rgba(29, 29, 32, 0.9) 98.26%
  21. );
  22. --mask-top2bottom-gray-50-to-transparent: linear-gradient(
  23. 180deg,
  24. rgba(24, 24, 27, 0.08) 0%,
  25. rgba(0, 0, 0, 0) 100%
  26. );
  27. }