Add Nord themes to the release

This commit is contained in:
mkpaz 2022-08-31 19:19:11 +04:00
parent a6a57a937c
commit 689f2929dc

@ -1,9 +1,7 @@
/* SPDX-License-Identifier: MIT */
package atlantafx.sampler.theme;
import atlantafx.base.theme.PrimerDark;
import atlantafx.base.theme.PrimerLight;
import atlantafx.base.theme.Theme;
import atlantafx.base.theme.*;
import atlantafx.sampler.Launcher;
import atlantafx.sampler.Resources;
import atlantafx.sampler.theme.ThemeEvent.EventType;
@ -102,6 +100,8 @@ public final class ThemeManager {
} else {
themes.add(new PrimerLight(appStylesheets));
themes.add(new PrimerDark(appStylesheets));
themes.add(new NordLight(appStylesheets));
themes.add(new NordDark(appStylesheets));
}
return themes;
}