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

@@ -583,7 +583,7 @@ public class IntelliJTheme
@Override @Override
public String getDescription() { public String getDescription() {
return theme.name; return getName();
} }
@Override @Override

View File

@@ -69,9 +69,9 @@ public class IJThemesClassGenerator
if( nameSep >= 0 ) if( nameSep >= 0 )
name = name.substring( nameSep + 1 ).trim(); name = name.substring( nameSep + 1 ).trim();
String displayName = name; String themeName = name;
if( "material-theme-ui-lite".equals( resourcePath ) ) if( "material-theme-ui-lite".equals( resourcePath ) )
displayName += " (Material)"; themeName += " (Material)";
StringBuilder buf = new StringBuilder(); StringBuilder buf = new StringBuilder();
for( String n : name.split( " " ) ) { for( String n : name.split( " " ) ) {
@@ -91,7 +91,8 @@ public class IJThemesClassGenerator
String classBody = CLASS_HEADER + CLASS_TEMPLATE String classBody = CLASS_HEADER + CLASS_TEMPLATE
.replace( "${subPackage}", subPackage ) .replace( "${subPackage}", subPackage )
.replace( "${themeClass}", themeClass ) .replace( "${themeClass}", themeClass )
.replace( "${themeFile}", themeFile ); .replace( "${themeFile}", themeFile )
.replace( "${themeName}", themeName );
File toDir = new File( toPath ); File toDir = new File( toPath );
if( resourcePath != null ) if( resourcePath != null )
@@ -105,10 +106,10 @@ public class IJThemesClassGenerator
allInfos.append( THEME_TEMPLATE allInfos.append( THEME_TEMPLATE
.replace( "${subPackage}", subPackage ) .replace( "${subPackage}", subPackage )
.replace( "${themeClass}", themeClass ) .replace( "${themeClass}", themeClass )
.replace( "${themeName}", displayName ) ); .replace( "${themeName}", themeName ) );
markdownTable.append( String.format( "[%s](%s) | `com.formdev.flatlaf.intellijthemes%s.%s`\n", markdownTable.append( String.format( "[%s](%s) | `com.formdev.flatlaf.intellijthemes%s.%s`\n",
displayName, ti.sourceCodeUrl, subPackage, themeClass ) ); themeName, ti.sourceCodeUrl, subPackage, themeClass ) );
} }
private static void writeFile( Path out, String content ) { private static void writeFile( Path out, String content ) {
@@ -136,6 +137,11 @@ public class IJThemesClassGenerator
" * See the License for the specific language governing permissions and\n" + " * See the License for the specific language governing permissions and\n" +
" * limitations under the License.\n" + " * limitations under the License.\n" +
" */\n" + " */\n" +
"\n" +
"//\n" +
"// DO NOT MODIFY\n" +
"// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator\n" +
"//\n" +
"\n"; "\n";
private static final String CLASS_TEMPLATE = private static final String CLASS_TEMPLATE =
@@ -160,6 +166,11 @@ public class IJThemesClassGenerator
" public ${themeClass}() {\n" + " public ${themeClass}() {\n" +
" super( Utils.loadTheme( \"${themeFile}\" ) );\n" + " super( Utils.loadTheme( \"${themeFile}\" ) );\n" +
" }\n" + " }\n" +
"\n" +
" @Override\n" +
" public String getName() {\n" +
" return \"${themeName}\";\n" +
" }\n" +
"}\n"; "}\n";
private static final String ALL_THEMES_TEMPLATE = private static final String ALL_THEMES_TEMPLATE =

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -14,6 +14,11 @@
* limitations under the License. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes; package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatGradiantoDarkFuchsiaIJTheme
public FlatGradiantoDarkFuchsiaIJTheme() { public FlatGradiantoDarkFuchsiaIJTheme() {
super( Utils.loadTheme( "Gradianto_dark_fuchsia.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes; package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatGradiantoDeepOceanIJTheme
public FlatGradiantoDeepOceanIJTheme() { public FlatGradiantoDeepOceanIJTheme() {
super( Utils.loadTheme( "Gradianto_deep_ocean.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes; package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatGradiantoMidnightBlueIJTheme
public FlatGradiantoMidnightBlueIJTheme() { public FlatGradiantoMidnightBlueIJTheme() {
super( Utils.loadTheme( "Gradianto_midnight_blue.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes; package com.formdev.flatlaf.intellijthemes;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatGrayIJTheme
public FlatGrayIJTheme() { public FlatGrayIJTheme() {
super( Utils.loadTheme( "Gray.theme.json" ) ); super( Utils.loadTheme( "Gray.theme.json" ) );
} }
@Override
public String getName() {
return "Gray";
}
} }

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -14,6 +14,11 @@
* limitations under the License. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatArcDarkContrastIJTheme
public FlatArcDarkContrastIJTheme() { public FlatArcDarkContrastIJTheme() {
super( Utils.loadTheme( "Arc Dark Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatArcDarkIJTheme
public FlatArcDarkIJTheme() { public FlatArcDarkIJTheme() {
super( Utils.loadTheme( "Arc Dark.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatAtomOneDarkContrastIJTheme
public FlatAtomOneDarkContrastIJTheme() { public FlatAtomOneDarkContrastIJTheme() {
super( Utils.loadTheme( "Atom One Dark Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatAtomOneDarkIJTheme
public FlatAtomOneDarkIJTheme() { public FlatAtomOneDarkIJTheme() {
super( Utils.loadTheme( "Atom One Dark.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatAtomOneLightContrastIJTheme
public FlatAtomOneLightContrastIJTheme() { public FlatAtomOneLightContrastIJTheme() {
super( Utils.loadTheme( "Atom One Light Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatAtomOneLightIJTheme
public FlatAtomOneLightIJTheme() { public FlatAtomOneLightIJTheme() {
super( Utils.loadTheme( "Atom One Light.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatDraculaContrastIJTheme
public FlatDraculaContrastIJTheme() { public FlatDraculaContrastIJTheme() {
super( Utils.loadTheme( "Dracula Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatDraculaIJTheme
public FlatDraculaIJTheme() { public FlatDraculaIJTheme() {
super( Utils.loadTheme( "Dracula.theme.json" ) ); super( Utils.loadTheme( "Dracula.theme.json" ) );
} }
@Override
public String getName() {
return "Dracula (Material)";
}
} }

View File

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

View File

@@ -14,6 +14,11 @@
* limitations under the License. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatLightOwlContrastIJTheme
public FlatLightOwlContrastIJTheme() { public FlatLightOwlContrastIJTheme() {
super( Utils.loadTheme( "Light Owl Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatLightOwlIJTheme
public FlatLightOwlIJTheme() { public FlatLightOwlIJTheme() {
super( Utils.loadTheme( "Light Owl.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialDarkerContrastIJTheme
public FlatMaterialDarkerContrastIJTheme() { public FlatMaterialDarkerContrastIJTheme() {
super( Utils.loadTheme( "Material Darker Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialDarkerIJTheme
public FlatMaterialDarkerIJTheme() { public FlatMaterialDarkerIJTheme() {
super( Utils.loadTheme( "Material Darker.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialDeepOceanContrastIJTheme
public FlatMaterialDeepOceanContrastIJTheme() { public FlatMaterialDeepOceanContrastIJTheme() {
super( Utils.loadTheme( "Material Deep Ocean Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialDeepOceanIJTheme
public FlatMaterialDeepOceanIJTheme() { public FlatMaterialDeepOceanIJTheme() {
super( Utils.loadTheme( "Material Deep Ocean.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialLighterContrastIJTheme
public FlatMaterialLighterContrastIJTheme() { public FlatMaterialLighterContrastIJTheme() {
super( Utils.loadTheme( "Material Lighter Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialLighterIJTheme
public FlatMaterialLighterIJTheme() { public FlatMaterialLighterIJTheme() {
super( Utils.loadTheme( "Material Lighter.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialOceanicContrastIJTheme
public FlatMaterialOceanicContrastIJTheme() { public FlatMaterialOceanicContrastIJTheme() {
super( Utils.loadTheme( "Material Oceanic Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialOceanicIJTheme
public FlatMaterialOceanicIJTheme() { public FlatMaterialOceanicIJTheme() {
super( Utils.loadTheme( "Material Oceanic.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialPalenightContrastIJTheme
public FlatMaterialPalenightContrastIJTheme() { public FlatMaterialPalenightContrastIJTheme() {
super( Utils.loadTheme( "Material Palenight Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMaterialPalenightIJTheme
public FlatMaterialPalenightIJTheme() { public FlatMaterialPalenightIJTheme() {
super( Utils.loadTheme( "Material Palenight.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMonokaiProContrastIJTheme
public FlatMonokaiProContrastIJTheme() { public FlatMonokaiProContrastIJTheme() {
super( Utils.loadTheme( "Monokai Pro Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatMonokaiProIJTheme
public FlatMonokaiProIJTheme() { public FlatMonokaiProIJTheme() {
super( Utils.loadTheme( "Monokai Pro.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatNightOwlContrastIJTheme
public FlatNightOwlContrastIJTheme() { public FlatNightOwlContrastIJTheme() {
super( Utils.loadTheme( "Night Owl Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatNightOwlIJTheme
public FlatNightOwlIJTheme() { public FlatNightOwlIJTheme() {
super( Utils.loadTheme( "Night Owl.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatSolarizedDarkContrastIJTheme
public FlatSolarizedDarkContrastIJTheme() { public FlatSolarizedDarkContrastIJTheme() {
super( Utils.loadTheme( "Solarized Dark Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatSolarizedDarkIJTheme
public FlatSolarizedDarkIJTheme() { public FlatSolarizedDarkIJTheme() {
super( Utils.loadTheme( "Solarized Dark.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatSolarizedLightContrastIJTheme
public FlatSolarizedLightContrastIJTheme() { public FlatSolarizedLightContrastIJTheme() {
super( Utils.loadTheme( "Solarized Light Contrast.theme.json" ) ); 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. * limitations under the License.
*/ */
//
// DO NOT MODIFY
// Generated with com.formdev.flatlaf.demo.intellijthemes.IJThemesClassGenerator
//
package com.formdev.flatlaf.intellijthemes.materialthemeuilite; package com.formdev.flatlaf.intellijthemes.materialthemeuilite;
import com.formdev.flatlaf.IntelliJTheme; import com.formdev.flatlaf.IntelliJTheme;
@@ -35,4 +40,9 @@ public class FlatSolarizedLightIJTheme
public FlatSolarizedLightIJTheme() { public FlatSolarizedLightIJTheme() {
super( Utils.loadTheme( "Solarized Light.theme.json" ) ); super( Utils.loadTheme( "Solarized Light.theme.json" ) );
} }
@Override
public String getName() {
return "Solarized Light (Material)";
}
} }