From 81d09bf31ba2531aa6aa31bc1537fdd9b168e111 Mon Sep 17 00:00:00 2001 From: Nick Colley Date: Sat, 21 Jan 2023 14:25:24 +0000 Subject: [PATCH] Change default themes to use brand purple --- src/intl/de.js | 4 ++-- src/intl/en-US.js | 4 ++-- src/intl/es.js | 4 ++-- src/intl/fr.js | 4 ++-- src/intl/ru-RU.JS | 4 ++-- src/routes/_static/themes.js | 6 +++--- src/scss/themes/_default.scss | 2 +- src/scss/themes/ozark.scss | 2 +- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/intl/de.js b/src/intl/de.js index eea86e30..7c691c6c 100644 --- a/src/intl/de.js +++ b/src/intl/de.js @@ -504,7 +504,7 @@ export default { followersOnly: 'Nur Folgende', direct: 'Direkt', // Themes - themeRoyal: 'Royal', + themeRoyal: 'Light', themeScarlet: 'Scarlet', themeSeafoam: 'Seafoam', themeHotpants: 'Hotpants', @@ -512,7 +512,7 @@ export default { themeMajesty: 'Majesty', themeGecko: 'Gecko', themeGrayscale: 'Grayscale', - themeOzark: 'Ozark', + themeDark: 'Dark', themeCobalt: 'Cobalt', themeSorcery: 'Sorcery', themePunk: 'Punk', diff --git a/src/intl/en-US.js b/src/intl/en-US.js index 4248087f..a4d0b96d 100644 --- a/src/intl/en-US.js +++ b/src/intl/en-US.js @@ -542,7 +542,7 @@ export default { followersOnly: 'Followers-only', direct: 'Direct', // Themes - themeRoyal: 'Royal', + themeRoyal: 'Light', themeScarlet: 'Scarlet', themeSeafoam: 'Seafoam', themeHotpants: 'Hotpants', @@ -550,7 +550,7 @@ export default { themeMajesty: 'Majesty', themeGecko: 'Gecko', themeGrayscale: 'Grayscale', - themeOzark: 'Ozark', + themeDark: 'Dark', themeCobalt: 'Cobalt', themeSorcery: 'Sorcery', themePunk: 'Punk', diff --git a/src/intl/es.js b/src/intl/es.js index eb88a340..f0b9dd70 100644 --- a/src/intl/es.js +++ b/src/intl/es.js @@ -543,7 +543,7 @@ export default { followersOnly: 'Solo seguidores', direct: 'Directo', // Themes - themeRoyal: 'Royal', + themeRoyal: 'Light', themeScarlet: 'Escarlata', themeSeafoam: 'Espuma de mar', themeHotpants: 'Hotpants', @@ -551,7 +551,7 @@ export default { themeMajesty: 'Majesty', themeGecko: 'Gecko', themeGrayscale: 'Escala de grises', - themeOzark: 'Ozark', + themeDark: 'Dark', themeCobalt: 'Cobalto', themeSorcery: 'Sorcery', themePunk: 'Punk', diff --git a/src/intl/fr.js b/src/intl/fr.js index e636736a..1a796b4a 100644 --- a/src/intl/fr.js +++ b/src/intl/fr.js @@ -514,7 +514,7 @@ export default { followersOnly: 'Abonnés/abonnées uniquement', direct: 'Direct', // Themes - themeRoyal: 'Royale', + themeRoyal: 'Light', themeScarlet: 'Ecarlate', themeSeafoam: 'Ecume', themeHotpants: 'Hotpants', @@ -522,7 +522,7 @@ export default { themeMajesty: 'Majesté', themeGecko: 'Gecko', themeGrayscale: 'Echelle gris', - themeOzark: 'Ozark', + themeDark: 'Dark', themeCobalt: 'Cobalt', themeSorcery: 'Sorcellerie', themePunk: 'Punk', diff --git a/src/intl/ru-RU.JS b/src/intl/ru-RU.JS index 42f3e147..175fe5c7 100644 --- a/src/intl/ru-RU.JS +++ b/src/intl/ru-RU.JS @@ -534,7 +534,7 @@ export default { followersOnly: 'Только для подписчиков', direct: 'Личное сообщение', // Themes - themeRoyal: 'Royal', + themeRoyal: 'Light', themeScarlet: 'Scarlet', themeSeafoam: 'Seafoam', themeHotpants: 'Hotpants', @@ -542,7 +542,7 @@ export default { themeMajesty: 'Majesty', themeGecko: 'Gecko', themeGrayscale: 'Grayscale', - themeOzark: 'Ozark', + themeDark: 'Dark', themeCobalt: 'Cobalt', themeSorcery: 'Sorcery', themePunk: 'Punk', diff --git a/src/routes/_static/themes.js b/src/routes/_static/themes.js index af31810f..9a965650 100644 --- a/src/routes/_static/themes.js +++ b/src/routes/_static/themes.js @@ -3,7 +3,7 @@ const themes = [ name: 'default', label: 'intl.themeRoyal', dark: false, - color: 'royalblue' + color: '#5D3FD3' }, { name: 'scarlet', @@ -49,9 +49,9 @@ const themes = [ }, { name: 'ozark', - label: 'intl.themeOzark', + label: 'intl.themeDark', dark: true, - color: '#5263af' + color: '#5D3FD3' }, { name: 'cobalt', diff --git a/src/scss/themes/_default.scss b/src/scss/themes/_default.scss index 264dcd29..3e3a68e3 100644 --- a/src/scss/themes/_default.scss +++ b/src/scss/themes/_default.scss @@ -1,4 +1,4 @@ -$main-theme-color: royalblue; +$main-theme-color: #5D3FD3; $body-bg-color: lighten($main-theme-color, 38%); $anchor-color: $main-theme-color; $main-text-color: #333; diff --git a/src/scss/themes/ozark.scss b/src/scss/themes/ozark.scss index b919a0b5..0e1db5ee 100644 --- a/src/scss/themes/ozark.scss +++ b/src/scss/themes/ozark.scss @@ -1,4 +1,4 @@ -$main-theme-color: #5263af; +$main-theme-color: #5D3FD3; $body-bg-color: #0f1427; $main-bg-color: #212433; $anchor-color: lighten($main-theme-color, 20%);