IntelliJ Themes: added getName() method to all InttelliJ Laf classes so that they return same name as defined in class FlatAllIJThemes (issue #201)

This commit is contained in:
Karl Tauber
2020-11-06 19:13:11 +01:00
parent fd0c2a5cd1
commit 605c77ecbc
61 changed files with 602 additions and 6 deletions

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import javax.swing.UIManager.LookAndFeelInfo;

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatArcDarkIJTheme
public FlatArcDarkIJTheme() {
super( Utils.loadTheme( "arc_theme_dark.theme.json" ) );
}
@Override
public String getName() {
return "Arc Dark";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatArcDarkOrangeIJTheme
public FlatArcDarkOrangeIJTheme() {
super( Utils.loadTheme( "arc_theme_dark_orange.theme.json" ) );
}
@Override
public String getName() {
return "Arc Dark - Orange";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatArcIJTheme
public FlatArcIJTheme() {
super( Utils.loadTheme( "arc-theme.theme.json" ) );
}
@Override
public String getName() {
return "Arc";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatArcOrangeIJTheme
public FlatArcOrangeIJTheme() {
super( Utils.loadTheme( "arc-theme-orange.theme.json" ) );
}
@Override
public String getName() {
return "Arc - Orange";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatCarbonIJTheme
public FlatCarbonIJTheme() {
super( Utils.loadTheme( "Carbon.theme.json" ) );
}
@Override
public String getName() {
return "Carbon";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatCobalt2IJTheme
public FlatCobalt2IJTheme() {
super( Utils.loadTheme( "Cobalt_2.theme.json" ) );
}
@Override
public String getName() {
return "Cobalt 2";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatCyanLightIJTheme
public FlatCyanLightIJTheme() {
super( Utils.loadTheme( "Cyan.theme.json" ) );
}
@Override
public String getName() {
return "Cyan light";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatDarkFlatIJTheme
public FlatDarkFlatIJTheme() {
super( Utils.loadTheme( "DarkFlatTheme.theme.json" ) );
}
@Override
public String getName() {
return "Dark Flat";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatDarkPurpleIJTheme
public FlatDarkPurpleIJTheme() {
super( Utils.loadTheme( "DarkPurple.theme.json" ) );
}
@Override
public String getName() {
return "Dark purple";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatDraculaIJTheme
public FlatDraculaIJTheme() {
super( Utils.loadTheme( "Dracula.theme.json" ) );
}
@Override
public String getName() {
return "Dracula";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatGradiantoDarkFuchsiaIJTheme
public FlatGradiantoDarkFuchsiaIJTheme() {
super( Utils.loadTheme( "Gradianto_dark_fuchsia.theme.json" ) );
}
@Override
public String getName() {
return "Gradianto Dark Fuchsia";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatGradiantoDeepOceanIJTheme
public FlatGradiantoDeepOceanIJTheme() {
super( Utils.loadTheme( "Gradianto_deep_ocean.theme.json" ) );
}
@Override
public String getName() {
return "Gradianto Deep Ocean";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatGradiantoMidnightBlueIJTheme
public FlatGradiantoMidnightBlueIJTheme() {
super( Utils.loadTheme( "Gradianto_midnight_blue.theme.json" ) );
}
@Override
public String getName() {
return "Gradianto Midnight Blue";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatGrayIJTheme
public FlatGrayIJTheme() {
super( Utils.loadTheme( "Gray.theme.json" ) );
}
@Override
public String getName() {
return "Gray";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatGruvboxDarkHardIJTheme
public FlatGruvboxDarkHardIJTheme() {
super( Utils.loadTheme( "gruvbox_dark_hard.theme.json" ) );
}
@Override
public String getName() {
return "Gruvbox Dark Hard";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatGruvboxDarkMediumIJTheme
public FlatGruvboxDarkMediumIJTheme() {
super( Utils.loadTheme( "gruvbox_dark_medium.theme.json" ) );
}
@Override
public String getName() {
return "Gruvbox Dark Medium";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatGruvboxDarkSoftIJTheme
public FlatGruvboxDarkSoftIJTheme() {
super( Utils.loadTheme( "gruvbox_dark_soft.theme.json" ) );
}
@Override
public String getName() {
return "Gruvbox Dark Soft";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatHiberbeeDarkIJTheme
public FlatHiberbeeDarkIJTheme() {
super( Utils.loadTheme( "HiberbeeDark.theme.json" ) );
}
@Override
public String getName() {
return "Hiberbee Dark";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatHighContrastIJTheme
public FlatHighContrastIJTheme() {
super( Utils.loadTheme( "HighContrast.theme.json" ) );
}
@Override
public String getName() {
return "High contrast";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatLightFlatIJTheme
public FlatLightFlatIJTheme() {
super( Utils.loadTheme( "LightFlatTheme.theme.json" ) );
}
@Override
public String getName() {
return "Light Flat";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialDesignDarkIJTheme
public FlatMaterialDesignDarkIJTheme() {
super( Utils.loadTheme( "MaterialTheme.theme.json" ) );
}
@Override
public String getName() {
return "Material Design Dark";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMonocaiIJTheme
public FlatMonocaiIJTheme() {
super( Utils.loadTheme( "Monocai.theme.json" ) );
}
@Override
public String getName() {
return "Monocai";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatNordIJTheme
public FlatNordIJTheme() {
super( Utils.loadTheme( "nord.theme.json" ) );
}
@Override
public String getName() {
return "Nord";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatOneDarkIJTheme
public FlatOneDarkIJTheme() {
super( Utils.loadTheme( "one_dark.theme.json" ) );
}
@Override
public String getName() {
return "One Dark";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatSolarizedDarkIJTheme
public FlatSolarizedDarkIJTheme() {
super( Utils.loadTheme( "SolarizedDark.theme.json" ) );
}
@Override
public String getName() {
return "Solarized Dark";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatSolarizedLightIJTheme
public FlatSolarizedLightIJTheme() {
super( Utils.loadTheme( "SolarizedLight.theme.json" ) );
}
@Override
public String getName() {
return "Solarized Light";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatSpacegrayIJTheme
public FlatSpacegrayIJTheme() {
super( Utils.loadTheme( "Spacegray.theme.json" ) );
}
@Override
public String getName() {
return "Spacegray";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatVuesionIJTheme
public FlatVuesionIJTheme() {
super( Utils.loadTheme( "vuesion_theme.theme.json" ) );
}
@Override
public String getName() {
return "Vuesion";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatArcDarkContrastIJTheme
public FlatArcDarkContrastIJTheme() {
super( Utils.loadTheme( "Arc Dark Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Arc Dark Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatArcDarkIJTheme
public FlatArcDarkIJTheme() {
super( Utils.loadTheme( "Arc Dark.theme.json" ) );
}
@Override
public String getName() {
return "Arc Dark (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatAtomOneDarkContrastIJTheme
public FlatAtomOneDarkContrastIJTheme() {
super( Utils.loadTheme( "Atom One Dark Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Atom One Dark Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatAtomOneDarkIJTheme
public FlatAtomOneDarkIJTheme() {
super( Utils.loadTheme( "Atom One Dark.theme.json" ) );
}
@Override
public String getName() {
return "Atom One Dark (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatAtomOneLightContrastIJTheme
public FlatAtomOneLightContrastIJTheme() {
super( Utils.loadTheme( "Atom One Light Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Atom One Light Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatAtomOneLightIJTheme
public FlatAtomOneLightIJTheme() {
super( Utils.loadTheme( "Atom One Light.theme.json" ) );
}
@Override
public String getName() {
return "Atom One Light (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatDraculaContrastIJTheme
public FlatDraculaContrastIJTheme() {
super( Utils.loadTheme( "Dracula Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Dracula Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatDraculaIJTheme
public FlatDraculaIJTheme() {
super( Utils.loadTheme( "Dracula.theme.json" ) );
}
@Override
public String getName() {
return "Dracula (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatGitHubContrastIJTheme
public FlatGitHubContrastIJTheme() {
super( Utils.loadTheme( "GitHub Contrast.theme.json" ) );
}
@Override
public String getName() {
return "GitHub Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatGitHubIJTheme
public FlatGitHubIJTheme() {
super( Utils.loadTheme( "GitHub.theme.json" ) );
}
@Override
public String getName() {
return "GitHub (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatLightOwlContrastIJTheme
public FlatLightOwlContrastIJTheme() {
super( Utils.loadTheme( "Light Owl Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Light Owl Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatLightOwlIJTheme
public FlatLightOwlIJTheme() {
super( Utils.loadTheme( "Light Owl.theme.json" ) );
}
@Override
public String getName() {
return "Light Owl (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialDarkerContrastIJTheme
public FlatMaterialDarkerContrastIJTheme() {
super( Utils.loadTheme( "Material Darker Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Material Darker Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialDarkerIJTheme
public FlatMaterialDarkerIJTheme() {
super( Utils.loadTheme( "Material Darker.theme.json" ) );
}
@Override
public String getName() {
return "Material Darker (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialDeepOceanContrastIJTheme
public FlatMaterialDeepOceanContrastIJTheme() {
super( Utils.loadTheme( "Material Deep Ocean Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Material Deep Ocean Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialDeepOceanIJTheme
public FlatMaterialDeepOceanIJTheme() {
super( Utils.loadTheme( "Material Deep Ocean.theme.json" ) );
}
@Override
public String getName() {
return "Material Deep Ocean (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialLighterContrastIJTheme
public FlatMaterialLighterContrastIJTheme() {
super( Utils.loadTheme( "Material Lighter Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Material Lighter Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialLighterIJTheme
public FlatMaterialLighterIJTheme() {
super( Utils.loadTheme( "Material Lighter.theme.json" ) );
}
@Override
public String getName() {
return "Material Lighter (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialOceanicContrastIJTheme
public FlatMaterialOceanicContrastIJTheme() {
super( Utils.loadTheme( "Material Oceanic Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Material Oceanic Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialOceanicIJTheme
public FlatMaterialOceanicIJTheme() {
super( Utils.loadTheme( "Material Oceanic.theme.json" ) );
}
@Override
public String getName() {
return "Material Oceanic (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialPalenightContrastIJTheme
public FlatMaterialPalenightContrastIJTheme() {
super( Utils.loadTheme( "Material Palenight Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Material Palenight Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialPalenightIJTheme
public FlatMaterialPalenightIJTheme() {
super( Utils.loadTheme( "Material Palenight.theme.json" ) );
}
@Override
public String getName() {
return "Material Palenight (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMonokaiProContrastIJTheme
public FlatMonokaiProContrastIJTheme() {
super( Utils.loadTheme( "Monokai Pro Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Monokai Pro Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMonokaiProIJTheme
public FlatMonokaiProIJTheme() {
super( Utils.loadTheme( "Monokai Pro.theme.json" ) );
}
@Override
public String getName() {
return "Monokai Pro (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatNightOwlContrastIJTheme
public FlatNightOwlContrastIJTheme() {
super( Utils.loadTheme( "Night Owl Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Night Owl Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatNightOwlIJTheme
public FlatNightOwlIJTheme() {
super( Utils.loadTheme( "Night Owl.theme.json" ) );
}
@Override
public String getName() {
return "Night Owl (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatSolarizedDarkContrastIJTheme
public FlatSolarizedDarkContrastIJTheme() {
super( Utils.loadTheme( "Solarized Dark Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Solarized Dark Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatSolarizedDarkIJTheme
public FlatSolarizedDarkIJTheme() {
super( Utils.loadTheme( "Solarized Dark.theme.json" ) );
}
@Override
public String getName() {
return "Solarized Dark (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatSolarizedLightContrastIJTheme
public FlatSolarizedLightContrastIJTheme() {
super( Utils.loadTheme( "Solarized Light Contrast.theme.json" ) );
}
@Override
public String getName() {
return "Solarized Light Contrast (Material)";
}
}

View File

@@ -14,6 +14,11 @@
* limitations under the License.
*/
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatSolarizedLightIJTheme
public FlatSolarizedLightIJTheme() {
super( Utils.loadTheme( "Solarized Light.theme.json" ) );
}
@Override
public String getName() {
return "Solarized Light (Material)";
}
}