Theming

To theme the admin, use Admin theme prop:

// App.tsx
import { themes } from 'ec.admin';
/* more imports */
const App = () => {
/* .. */
return <Admin theme={themes.dark}>{/* stuff */}</Admin>;
};

Checkout ra theme docs for more info.