# 主题美化

在启动类添加:

com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMaterialOceanicIJTheme.setup();

主题自选

materialthemeuilite里面的属性,如FlatMaterialOceanicIJTheme

主题样式预览

点我直达 (opens new window)

非Maven项目,手动导入下面两个包即可

        <dependency>
            <groupId>com.formdev</groupId>
            <artifactId>flatlaf</artifactId>
            <version>3.1.1</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>com.formdev</groupId>
            <artifactId>flatlaf-intellij-themes</artifactId>
            <version>3.1.1</version>
        </dependency>