musk.tsx 535 B

1234567891011121314151617181920
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { useDark } from '@rspress/core/dist/runtime.js';
  6. export const FlowGramLogoMask = () => {
  7. const isDark = useDark();
  8. return (
  9. <div
  10. className="flowgram-logo-mask"
  11. style={{
  12. backgroundImage: isDark
  13. ? 'conic-gradient(from 180deg at 50% 50%, #0095ff 0deg, 180deg, #42d392 1turn)'
  14. : 'conic-gradient(from 180deg at 50% 50%, #3473fb 0deg, 180deg, #46cbc2 1turn)',
  15. }}
  16. />
  17. );
  18. };