diff --git a/packages/ui/.parcelrc b/packages/ui/.parcelrc index e2736c9c9..dc0dae33e 100644 --- a/packages/ui/.parcelrc +++ b/packages/ui/.parcelrc @@ -1,7 +1,7 @@ { "extends": "@parcel/config-default", "transformers": { - "*.svg": [ + "**/assets/icons/*.svg": [ "@parcel/transformer-svg-react" ] } diff --git a/packages/ui/src/assets/index.d.ts b/packages/ui/src/assets/index.d.ts index 8ee74434a..bdd1a8ac3 100644 --- a/packages/ui/src/assets/index.d.ts +++ b/packages/ui/src/assets/index.d.ts @@ -1,6 +1,6 @@ interface SvgComponent extends React.StatelessComponent> {} -declare module '*.svg' { +declare module '@/assets/icons/*.svg' { const value: SvgComponent; export default value; } diff --git a/packages/ui/src/assets/logo/logto-dark.svg b/packages/ui/src/assets/logo/logto-dark.svg new file mode 100644 index 000000000..8d897cc3d --- /dev/null +++ b/packages/ui/src/assets/logo/logto-dark.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/ui/src/assets/logo/logto-light.svg b/packages/ui/src/assets/logo/logto-light.svg new file mode 100644 index 000000000..509727b3c --- /dev/null +++ b/packages/ui/src/assets/logo/logto-light.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/ui/src/pages/SignIn/index.tsx b/packages/ui/src/pages/SignIn/index.tsx index ab74ad577..db2546660 100644 --- a/packages/ui/src/pages/SignIn/index.tsx +++ b/packages/ui/src/pages/SignIn/index.tsx @@ -2,6 +2,8 @@ import { BrandingStyle, SignInMode } from '@logto/schemas'; import classNames from 'classnames'; import React, { useContext } from 'react'; +import darkLogto from '@/assets/logo/logto-dark.svg'; +import lightLogto from '@/assets/logo/logto-light.svg'; import BrandingHeader from '@/components/BrandingHeader'; import AppNotification from '@/containers/AppNotification'; import { PageContext } from '@/hooks/use-page-context'; @@ -17,14 +19,21 @@ const SignIn = () => { } const { slogan, logoUrl, darkLogoUrl, style } = experienceSettings.branding; - const logo = theme === 'light' ? logoUrl : darkLogoUrl ?? logoUrl; + + const getLogto = () => { + if (theme === 'light') { + return logoUrl || lightLogto; + } + + return darkLogoUrl ? darkLogoUrl : logoUrl || darkLogto; + }; return (