# Install

```xml
<dependency>
    <groupId>de.mate_ds</groupId>
    <artifactId>mate-flow-theme</artifactId>
</dependency>
```

# Import

In your application entrypoint:

```java
import de.mate_ds.flow.component.theme.MateTheme;

@Uses(MateTheme.class)
public class App implements AppShellConfigurator {
    ...
}
```

For Spring Boot the appropriate annotation class would be the one annotated with @SpringBootApplication.