From 88e3618bc5fcc4f7af4433a4d7edb51c12766251 Mon Sep 17 00:00:00 2001 From: nklhrstv Date: Fri, 25 Nov 2022 17:37:53 +0200 Subject: [PATCH] use background color from the pallete --- src/index.html | 2 +- webpack.config.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index 79a09fbb5..7d07b51fc 100644 --- a/src/index.html +++ b/src/index.html @@ -8,7 +8,7 @@ - + Stremio - All you can watch! <%= htmlWebpackPlugin.tags.headTags %> diff --git a/webpack.config.js b/webpack.config.js index 93cff5e93..51997aa52 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -9,6 +9,7 @@ const { CleanWebpackPlugin } = require('clean-webpack-plugin'); const WorkboxPlugin = require('workbox-webpack-plugin'); const CopyWebpackPlugin = require('copy-webpack-plugin'); const TerserPlugin = require('terser-webpack-plugin'); +const colors = require('@stremio/stremio-colors'); const pachageJson = require('./package.json'); const COMMIT_HASH = execSync('git rev-parse HEAD').toString().trim(); @@ -208,6 +209,7 @@ module.exports = (env, argv) => ({ template: './src/index.html', inject: false, scriptLoading: 'blocking', + themeColor: colors.background, faviconsPath: `${COMMIT_HASH}/favicons`, imagesPath: `${COMMIT_HASH}/images`, manifestPath: `${COMMIT_HASH}/manifest.json`,