diff --git a/lib/constants/assets.dart b/lib/constants/assets.dart index cf1b73a..66bffde 100644 --- a/lib/constants/assets.dart +++ b/lib/constants/assets.dart @@ -29,10 +29,10 @@ class Assets { static String get techCategoryIcon => _baseImagesPath + '/categories/tech-$_themeSuffix.svg'; - static const String lightTheme = _baseThemesPath + '/light-theme.svg'; - static const String darkTheme = _baseThemesPath + '/dark-theme.svg'; + static const String lightTheme = _baseThemesPath + '/theme-light.svg'; + static const String darkTheme = _baseThemesPath + '/theme-dark.svg'; - static String get recordDark => _baseRecordsPath + '/$_themeSuffix-theme.svg'; + static String get record => _baseRecordsPath + '/record-$_themeSuffix.svg'; static String get _themeSuffix => DesignConfig.brightness == Brightness.dark ? 'dark' : 'light';