Skip to content

Commit

Permalink
fix missing properties file bug when compiling to jar
Browse files Browse the repository at this point in the history
  • Loading branch information
creme332 committed Dec 19, 2023
1 parent 71f21e5 commit be0c856
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/github/creme332/themes/TizcTheme.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
public class TizcTheme extends FlatDarkLaf {
public static boolean setup() {
installFonts();
TizcTheme.registerCustomDefaultsSource("themes");
return setup(new TizcTheme());
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
defaultFont = 20 "Poppins Light", Arial
defaultFont = 20 "Poppins Light", "Poppins Black"

@background = #111
@foreground = #ddd
@accentColor = #f57900

Button.borderColor = #fff

# https://www.formdev.com/flatlaf/components/radiobutton/
RadioButton.background = $Button.background
RadioButton.foreground = $Button.foreground
RadioButton.margin = $Button.margin

h00.font = +24
h0.font = +18
h1.font = +15 $semibold.font
h00.font = +24 "Poppins Regular"
h0.font = +18 "Poppins Regular"
h1.font = +18 "Poppins Black"
h2.font = +6 $semibold.font
h3.font = +5 $semibold.font
h4.font = bold
h4.font = bold

0 comments on commit be0c856

Please sign in to comment.