diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 49302fece1..5a05373dff 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -263,6 +263,7 @@ "%(widgetName)s widget removed by %(senderName)s": "%(widgetName)s widget removed by %(senderName)s", "Light theme": "Light theme", "Dark theme": "Dark theme", + "Custom theme (light)": "Custom theme (light)", "%(displayName)s is typing …": "%(displayName)s is typing …", "%(names)s and %(count)s others are typing …|other": "%(names)s and %(count)s others are typing …", "%(names)s and %(count)s others are typing …|one": "%(names)s and one other is typing …", diff --git a/src/themes.js b/src/themes.js index 1896333844..2529a04d89 100644 --- a/src/themes.js +++ b/src/themes.js @@ -21,4 +21,5 @@ export const DEFAULT_THEME = "light"; export const THEMES = { "light": _td("Light theme"), "dark": _td("Dark theme"), + "light-custom": _td("Custom theme (light)"), };