123456789101112131415161718192021222324252627 |
- html[data-theme="dark"] {
- --color-chatbot-bg: linear-gradient(
- 180deg,
- rgba(34, 34, 37, 0.9) 0%,
- rgba(29, 29, 32, 0.9) 90.48%
- );
- --color-chat-bubble-bg: linear-gradient(
- 180deg,
- rgba(200, 206, 218, 0.08) 0%,
- rgba(200, 206, 218, 0.02) 100%
- );
- --color-workflow-process-bg: linear-gradient(
- 90deg,
- rgba(24, 24, 27, 0.25) 0%,
- rgba(24, 24, 27, 0.04) 100%
- );
- --color-account-teams-bg: linear-gradient(
- 271deg,
- rgba(34, 34, 37, 0.9) -0.1%,
- rgba(29, 29, 32, 0.9) 98.26%
- );
- --mask-top2bottom-gray-50-to-transparent: linear-gradient(
- 180deg,
- rgba(24, 24, 27, 0.08) 0%,
- rgba(0, 0, 0, 0) 100%
- );
- }
|