frontend └── themes └── my-theme ├── styles.css └── theme.json
Styling
Customizing the linkki theme
For general information, see the Vaadin documentation on application themes.
In general, a certain folder structure is needed for a custom theme. This structure depends on whether the theme will be directly used in the application in which it is defined, or will it be packaged to be used in a different project.
For direct usage, the minimum requirement includes a folder with the theme name in frontend/themes
, with a styles.css
file and a theme.json
file.
If the theme needs to be packaged for other projects, the theme folder must be in src/main/resources/META-INF/resources/themes
.
src └── main └── resources └── META-INF └── resources └── themes └── my-theme ├── styles.css └── theme.json
In both cases, the theme.json
file must include the following configuration:
{
"parent": "linkki"
}
The styles.css
file contains the CSS customizations one wants to make in the theme. For most simple changes, adjusting some of the Lumo CSS properties should suffice. The Lumo Theme Editor is a useful tool to visualize the possibilities.