diff options
author | Eric Bailey <git@esb.lol> | 2024-01-08 15:47:25 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-08 13:47:25 -0800 |
commit | 9eeff2cc5ca6c05dee8c191f33dbbb4b7a4bd482 (patch) | |
tree | 35de4473482736380be8b25c0b962103b7b207e0 /app.config.js | |
parent | fcfebda4697cd3c484e2faa69fc22c996fcc771d (diff) | |
download | voidsky-9eeff2cc5ca6c05dee8c191f33dbbb4b7a4bd482.tar.zst |
Splash: reduce motion + dark mode (#2448)
* Don't use mask for android at all * Handle reduced motion * Add dark splash * Add dark config * Fix android version code --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'app.config.js')
-rw-r--r-- | app.config.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app.config.js b/app.config.js index f2403edd4..4f2780feb 100644 --- a/app.config.js +++ b/app.config.js @@ -66,6 +66,12 @@ module.exports = function () { 'Used for profile pictures, posts, and other kinds of content', }, associatedDomains: ['applinks:bsky.app', 'applinks:staging.bsky.app'], + splash: { + dark: { + image: './assets/splash-dark.png', + backgroundColor: '#001429', + }, + }, }, androidStatusBar: { barStyle: 'dark-content', @@ -95,6 +101,12 @@ module.exports = function () { category: ['BROWSABLE', 'DEFAULT'], }, ], + splash: { + dark: { + image: './assets/splash-dark.png', + backgroundColor: '#001429', + }, + }, }, web: { favicon: './assets/favicon.png', |