mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-11 06:27:13 -06:00
Inter font
This sub-project contains fonts from the Inter font family and bundles them into an easy-to-use and redistributable JAR.
Note: This font does not work correctly in older Java 8 versions (before 8u212) and in Java 9 because it is displayed way too large.
Font home page: https://rsms.me/inter/
GitHub project: https://github.com/rsms/inter
License: SIL OPEN FONT LICENSE Version 1.1
How to install?
Invoke the install() method once (e.g. in your main() method; on AWT
thread):
FlatInterFont.install();
How to use?
Use as default font:
FlatLaf.setPreferredFontFamily( FlatInterFont.FAMILY );
FlatLaf.setPreferredLightFontFamily( FlatInterFont.FAMILY_LIGHT );
FlatLaf.setPreferredSemiboldFontFamily( FlatInterFont.FAMILY_SEMIBOLD );
Create fonts:
// basic styles
new Font( FlatInterFont.FAMILY, Font.PLAIN, 12 );
new Font( FlatInterFont.FAMILY, Font.ITALIC, 12 );
new Font( FlatInterFont.FAMILY, Font.BOLD, 12 );
new Font( FlatInterFont.FAMILY, Font.BOLD | Font.ITALIC, 12 );
// light
new Font( FlatInterFont.FAMILY_LIGHT, Font.PLAIN, 12 );
new Font( FlatInterFont.FAMILY_LIGHT, Font.ITALIC, 12 );
// semibold
new Font( FlatInterFont.FAMILY_SEMIBOLD, Font.PLAIN, 12 );
new Font( FlatInterFont.FAMILY_SEMIBOLD, Font.ITALIC, 12 );
Download
Not yet available.