add forest theme to background.dart

This commit is contained in:
ryleedavis 2023-02-10 09:36:15 -07:00
parent a3486b46fc
commit 8da63b6f3d
2 changed files with 2 additions and 0 deletions

View file

@ -53,6 +53,7 @@ class _SVG {
case ThemeType.light:
case ThemeType.dark:
case ThemeType.oledBlack:
case ThemeType.forest:
return null;
case ThemeType.oceanBreeze:

View file

@ -23,6 +23,7 @@ class Background extends StatelessWidget {
case ThemeType.light:
case ThemeType.dark:
case ThemeType.oledBlack:
case ThemeType.forest:
color = Theme.of(context).extension<StackColors>()!.background;
break;
case ThemeType.oceanBreeze: