mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 07:23:34 +01:00
feat(webreader): added gray backround option
* feat: added gray backround option to book reader Signed-off-by: gryffyn <me@neveris.one> * refactor: reorder options to have gray between white and black Co-authored-by: Gauthier Roebroeck <gauthier.roebroeck@gmail.com>
This commit is contained in:
parent
8859241885
commit
1ba6822fd5
2 changed files with 3 additions and 1 deletions
|
|
@ -105,7 +105,8 @@
|
|||
"background_color": "Background color",
|
||||
"background_colors": {
|
||||
"black": "Black",
|
||||
"white": "White"
|
||||
"white": "White",
|
||||
"gray": "Gray"
|
||||
},
|
||||
"display": "Display",
|
||||
"general": "General",
|
||||
|
|
|
|||
|
|
@ -403,6 +403,7 @@ export default Vue.extend({
|
|||
})),
|
||||
backgroundColors: [
|
||||
{text: this.$t('bookreader.settings.background_colors.white').toString(), value: 'white'},
|
||||
{text: this.$t('bookreader.settings.background_colors.gray').toString(), value: '#212121'},
|
||||
{text: this.$t('bookreader.settings.background_colors.black').toString(), value: 'black'},
|
||||
],
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue