We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like to use the Customize Design Token like described here: https://ant.design/docs/react/customize-theme.
Because this integration is using Ant Design already, it is probably easy to add?
This is a very basic example of how to use the theme / custom settings:
import { Scheduler, } from 'react-big-schedule'; import { ConfigProvider, theme, } from 'antd'; const App = () =>{ const { useToken } = theme; const { token } = useToken(); return( <ConfigProvider theme={{ token: { colorPrimary: token.colorPrimary, colorPrimaryHover: token.colorPrimaryHover, borderRadius: token.borderRadius, }, }}> <Scheduler {...props} /> </ConfigProvider> )}
The Scheduler got the same colors and gui setup as the rest of the antd application config.
No response
The text was updated successfully, but these errors were encountered:
Yes great idea we will try to implement it
Sorry, something went wrong.
No branches or pull requests
Checklist
What problem does this feature solve?
I would like to use the Customize Design Token like described here: https://ant.design/docs/react/customize-theme.
Because this integration is using Ant Design already, it is probably easy to add?
Proposed Solution
This is a very basic example of how to use the theme / custom settings:
Benefits
The Scheduler got the same colors and gui setup as the rest of the antd application config.
Alternatives Considered
No response
Additional Information
No response
The text was updated successfully, but these errors were encountered: