How to change the background color in SumatraPDF reader?
up vote
13
down vote
favorite
How to change the background color. I would like to change it to something easier to read, is there an option to change this anywhere?
colors sumatra-pdf
add a comment |
up vote
13
down vote
favorite
How to change the background color. I would like to change it to something easier to read, is there an option to change this anywhere?
colors sumatra-pdf
add a comment |
up vote
13
down vote
favorite
up vote
13
down vote
favorite
How to change the background color. I would like to change it to something easier to read, is there an option to change this anywhere?
colors sumatra-pdf
How to change the background color. I would like to change it to something easier to read, is there an option to change this anywhere?
colors sumatra-pdf
colors sumatra-pdf
edited Feb 3 '15 at 14:24
user33758
asked Oct 7 '09 at 8:54
benny856694
177115
177115
add a comment |
add a comment |
10 Answers
10
active
oldest
votes
up vote
14
down vote
If you run SumatraPDF with the command-line option -bg-color 0xffff99
it will launch SumatraPDF with the new background color, and save the background color as your default.
The 0xffff99
part is the hex code for a lighter yellow.
Alternatively, the following command line option can be used:
-invert-colors
Swaps text and background color for most documents
Refer to https://github.com/sumatrapdfreader/sumatrapdf/wiki/Command-line-arguments for more information.
Refer to http://www.sumatrapdfreader.org/settings.html for more information regarding customizing colors in SumatraPDF-settings.txt (customizable by navigating to Menu -> Settings -> Advanced Settings)
Refer to https://i.imgur.com/tNwH6yj.gif to create a shortcut to always open SumatraPDF in this mode.
SumatraPDF website: http://www.sumatrapdfreader.org/free-pdf-reader.html
add a comment |
up vote
3
down vote
I found the solution. My setup is all black boarders and black start-up screen and total black in full-screen with white text.
Setting/Advanced Options, add line GradientColors to FixedPageUI then choose your hex color. Here is my setup for all black and white.
MainWindowBackground = #000000
EscToExit = false
ReuseInstance = false
UseSysColors = false
RestoreSession = true
FixedPageUI [
TextColor = #ffffff
BackgroundColor = #000000
SelectionColor = #f5fc0c
WindowMargin = 2 4 2 4
PageSpacing = 4 4
GradientColors = #000000
]
add a comment |
up vote
2
down vote
You can apply Windows theme to your document using SumatraPDF options dialog. So, if you're using nice background color in Windows, Sumatra will use it too (works perfectly for me in classic Windows theme).
add a comment |
up vote
2
down vote
There's a command line option to invert colors:
sumatrapdf.exe -invert-colors
Basically for black-text-on-white it will produce white-text-on-black, while making other colors still readable just by inverting them also (in PDF-Xchange on contrary, if there are e.g. gray boxes, their contents might become unreadable afterwards).
Additionally, there's -set-color-range option which is more general:
sumatrapdf.exe -set-color-range 0x00dd00 0x000000
This will produce green text on black background and scale other colors appropriately.
Documentation: http://code.google.com/p/sumatrapdf/wiki/CommandLineArguments
https://github.com/sumatrapdfreader/sumatrapdf/wiki/Command-line-arguments
add a comment |
up vote
1
down vote
This can now be changed in the "Settings->Advanced Options...", you just need to edit the "MainWindowBackground" entry near the top.
add a comment |
up vote
1
down vote
Go to 'Settings' > 'Advanced Options...' It will open SumatraPDF-settings.txt
file in the text editor.
Then change the hex value of BackgroundColor
option under FixedPageUI
or any other corresponding *UI section.
More details http://blog.kowalczyk.info/software/sumatrapdf/settings.html
add a comment |
up vote
1
down vote
If you use dark theme for windows colors and want it used on SumatraPDF. Find SumatraPDF/SumatraPDF_settings.txt
and one of the first lines UseSysColors
can be changed from false
to true
.
add a comment |
up vote
0
down vote
Unfortunately, I believe it's not possible.
The -bgcolor argument will only change the background color of the start-up screen.
thanks. i emailed the creater of reader to see if he can help
– benny856694
Oct 7 '09 at 9:11
add a comment |
up vote
0
down vote
Actually you are right about the fixed UI setting, but my version of sumatraPDF
, kept the book colour yellow, even if app was black.
So, I looked at the file more closely and found this in ebook section
:
UseFixedPageUI = false
I just set it to true
to fix it. You have to do same for all instances where you want it to set a custom colour.
If your answer is good, you'll gain reputations enough to post an image. For the time being post a link to image. That will be good & If needed, you can edit it later to directly post the image.
– C0deDaedalus
May 25 at 9:04
add a comment |
up vote
-1
down vote
To change background color in last version of SumatraPDF go to Settings -> Advanced Options, change - BackgroundColor option in FixedPageUI part.
Like this:
FixedPageUI
[
TextColor = #000000 (change foreground text color)
BackgroundColor = #f0f0f0 (change background color)
SelectionColor = #f5fc0c
WindowMargin = 1 0 1 0
PageSpacing = 2 2
]
add a comment |
10 Answers
10
active
oldest
votes
10 Answers
10
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
14
down vote
If you run SumatraPDF with the command-line option -bg-color 0xffff99
it will launch SumatraPDF with the new background color, and save the background color as your default.
The 0xffff99
part is the hex code for a lighter yellow.
Alternatively, the following command line option can be used:
-invert-colors
Swaps text and background color for most documents
Refer to https://github.com/sumatrapdfreader/sumatrapdf/wiki/Command-line-arguments for more information.
Refer to http://www.sumatrapdfreader.org/settings.html for more information regarding customizing colors in SumatraPDF-settings.txt (customizable by navigating to Menu -> Settings -> Advanced Settings)
Refer to https://i.imgur.com/tNwH6yj.gif to create a shortcut to always open SumatraPDF in this mode.
SumatraPDF website: http://www.sumatrapdfreader.org/free-pdf-reader.html
add a comment |
up vote
14
down vote
If you run SumatraPDF with the command-line option -bg-color 0xffff99
it will launch SumatraPDF with the new background color, and save the background color as your default.
The 0xffff99
part is the hex code for a lighter yellow.
Alternatively, the following command line option can be used:
-invert-colors
Swaps text and background color for most documents
Refer to https://github.com/sumatrapdfreader/sumatrapdf/wiki/Command-line-arguments for more information.
Refer to http://www.sumatrapdfreader.org/settings.html for more information regarding customizing colors in SumatraPDF-settings.txt (customizable by navigating to Menu -> Settings -> Advanced Settings)
Refer to https://i.imgur.com/tNwH6yj.gif to create a shortcut to always open SumatraPDF in this mode.
SumatraPDF website: http://www.sumatrapdfreader.org/free-pdf-reader.html
add a comment |
up vote
14
down vote
up vote
14
down vote
If you run SumatraPDF with the command-line option -bg-color 0xffff99
it will launch SumatraPDF with the new background color, and save the background color as your default.
The 0xffff99
part is the hex code for a lighter yellow.
Alternatively, the following command line option can be used:
-invert-colors
Swaps text and background color for most documents
Refer to https://github.com/sumatrapdfreader/sumatrapdf/wiki/Command-line-arguments for more information.
Refer to http://www.sumatrapdfreader.org/settings.html for more information regarding customizing colors in SumatraPDF-settings.txt (customizable by navigating to Menu -> Settings -> Advanced Settings)
Refer to https://i.imgur.com/tNwH6yj.gif to create a shortcut to always open SumatraPDF in this mode.
SumatraPDF website: http://www.sumatrapdfreader.org/free-pdf-reader.html
If you run SumatraPDF with the command-line option -bg-color 0xffff99
it will launch SumatraPDF with the new background color, and save the background color as your default.
The 0xffff99
part is the hex code for a lighter yellow.
Alternatively, the following command line option can be used:
-invert-colors
Swaps text and background color for most documents
Refer to https://github.com/sumatrapdfreader/sumatrapdf/wiki/Command-line-arguments for more information.
Refer to http://www.sumatrapdfreader.org/settings.html for more information regarding customizing colors in SumatraPDF-settings.txt (customizable by navigating to Menu -> Settings -> Advanced Settings)
Refer to https://i.imgur.com/tNwH6yj.gif to create a shortcut to always open SumatraPDF in this mode.
SumatraPDF website: http://www.sumatrapdfreader.org/free-pdf-reader.html
edited Feb 1 '16 at 4:12
Pair Sir Parser
1525
1525
answered Jun 22 '11 at 9:41
Arno
24136
24136
add a comment |
add a comment |
up vote
3
down vote
I found the solution. My setup is all black boarders and black start-up screen and total black in full-screen with white text.
Setting/Advanced Options, add line GradientColors to FixedPageUI then choose your hex color. Here is my setup for all black and white.
MainWindowBackground = #000000
EscToExit = false
ReuseInstance = false
UseSysColors = false
RestoreSession = true
FixedPageUI [
TextColor = #ffffff
BackgroundColor = #000000
SelectionColor = #f5fc0c
WindowMargin = 2 4 2 4
PageSpacing = 4 4
GradientColors = #000000
]
add a comment |
up vote
3
down vote
I found the solution. My setup is all black boarders and black start-up screen and total black in full-screen with white text.
Setting/Advanced Options, add line GradientColors to FixedPageUI then choose your hex color. Here is my setup for all black and white.
MainWindowBackground = #000000
EscToExit = false
ReuseInstance = false
UseSysColors = false
RestoreSession = true
FixedPageUI [
TextColor = #ffffff
BackgroundColor = #000000
SelectionColor = #f5fc0c
WindowMargin = 2 4 2 4
PageSpacing = 4 4
GradientColors = #000000
]
add a comment |
up vote
3
down vote
up vote
3
down vote
I found the solution. My setup is all black boarders and black start-up screen and total black in full-screen with white text.
Setting/Advanced Options, add line GradientColors to FixedPageUI then choose your hex color. Here is my setup for all black and white.
MainWindowBackground = #000000
EscToExit = false
ReuseInstance = false
UseSysColors = false
RestoreSession = true
FixedPageUI [
TextColor = #ffffff
BackgroundColor = #000000
SelectionColor = #f5fc0c
WindowMargin = 2 4 2 4
PageSpacing = 4 4
GradientColors = #000000
]
I found the solution. My setup is all black boarders and black start-up screen and total black in full-screen with white text.
Setting/Advanced Options, add line GradientColors to FixedPageUI then choose your hex color. Here is my setup for all black and white.
MainWindowBackground = #000000
EscToExit = false
ReuseInstance = false
UseSysColors = false
RestoreSession = true
FixedPageUI [
TextColor = #ffffff
BackgroundColor = #000000
SelectionColor = #f5fc0c
WindowMargin = 2 4 2 4
PageSpacing = 4 4
GradientColors = #000000
]
edited Nov 22 at 14:57
TT--
1215
1215
answered Aug 31 '17 at 1:53
JJenkx
311
311
add a comment |
add a comment |
up vote
2
down vote
You can apply Windows theme to your document using SumatraPDF options dialog. So, if you're using nice background color in Windows, Sumatra will use it too (works perfectly for me in classic Windows theme).
add a comment |
up vote
2
down vote
You can apply Windows theme to your document using SumatraPDF options dialog. So, if you're using nice background color in Windows, Sumatra will use it too (works perfectly for me in classic Windows theme).
add a comment |
up vote
2
down vote
up vote
2
down vote
You can apply Windows theme to your document using SumatraPDF options dialog. So, if you're using nice background color in Windows, Sumatra will use it too (works perfectly for me in classic Windows theme).
You can apply Windows theme to your document using SumatraPDF options dialog. So, if you're using nice background color in Windows, Sumatra will use it too (works perfectly for me in classic Windows theme).
answered Oct 28 '12 at 9:52
anonymous
211
211
add a comment |
add a comment |
up vote
2
down vote
There's a command line option to invert colors:
sumatrapdf.exe -invert-colors
Basically for black-text-on-white it will produce white-text-on-black, while making other colors still readable just by inverting them also (in PDF-Xchange on contrary, if there are e.g. gray boxes, their contents might become unreadable afterwards).
Additionally, there's -set-color-range option which is more general:
sumatrapdf.exe -set-color-range 0x00dd00 0x000000
This will produce green text on black background and scale other colors appropriately.
Documentation: http://code.google.com/p/sumatrapdf/wiki/CommandLineArguments
https://github.com/sumatrapdfreader/sumatrapdf/wiki/Command-line-arguments
add a comment |
up vote
2
down vote
There's a command line option to invert colors:
sumatrapdf.exe -invert-colors
Basically for black-text-on-white it will produce white-text-on-black, while making other colors still readable just by inverting them also (in PDF-Xchange on contrary, if there are e.g. gray boxes, their contents might become unreadable afterwards).
Additionally, there's -set-color-range option which is more general:
sumatrapdf.exe -set-color-range 0x00dd00 0x000000
This will produce green text on black background and scale other colors appropriately.
Documentation: http://code.google.com/p/sumatrapdf/wiki/CommandLineArguments
https://github.com/sumatrapdfreader/sumatrapdf/wiki/Command-line-arguments
add a comment |
up vote
2
down vote
up vote
2
down vote
There's a command line option to invert colors:
sumatrapdf.exe -invert-colors
Basically for black-text-on-white it will produce white-text-on-black, while making other colors still readable just by inverting them also (in PDF-Xchange on contrary, if there are e.g. gray boxes, their contents might become unreadable afterwards).
Additionally, there's -set-color-range option which is more general:
sumatrapdf.exe -set-color-range 0x00dd00 0x000000
This will produce green text on black background and scale other colors appropriately.
Documentation: http://code.google.com/p/sumatrapdf/wiki/CommandLineArguments
https://github.com/sumatrapdfreader/sumatrapdf/wiki/Command-line-arguments
There's a command line option to invert colors:
sumatrapdf.exe -invert-colors
Basically for black-text-on-white it will produce white-text-on-black, while making other colors still readable just by inverting them also (in PDF-Xchange on contrary, if there are e.g. gray boxes, their contents might become unreadable afterwards).
Additionally, there's -set-color-range option which is more general:
sumatrapdf.exe -set-color-range 0x00dd00 0x000000
This will produce green text on black background and scale other colors appropriately.
Documentation: http://code.google.com/p/sumatrapdf/wiki/CommandLineArguments
https://github.com/sumatrapdfreader/sumatrapdf/wiki/Command-line-arguments
edited May 4 '17 at 20:30
answered Jan 25 '13 at 22:27
jakub.g
3,35722128
3,35722128
add a comment |
add a comment |
up vote
1
down vote
This can now be changed in the "Settings->Advanced Options...", you just need to edit the "MainWindowBackground" entry near the top.
add a comment |
up vote
1
down vote
This can now be changed in the "Settings->Advanced Options...", you just need to edit the "MainWindowBackground" entry near the top.
add a comment |
up vote
1
down vote
up vote
1
down vote
This can now be changed in the "Settings->Advanced Options...", you just need to edit the "MainWindowBackground" entry near the top.
This can now be changed in the "Settings->Advanced Options...", you just need to edit the "MainWindowBackground" entry near the top.
answered Aug 20 '13 at 14:17
Xantix
11112
11112
add a comment |
add a comment |
up vote
1
down vote
Go to 'Settings' > 'Advanced Options...' It will open SumatraPDF-settings.txt
file in the text editor.
Then change the hex value of BackgroundColor
option under FixedPageUI
or any other corresponding *UI section.
More details http://blog.kowalczyk.info/software/sumatrapdf/settings.html
add a comment |
up vote
1
down vote
Go to 'Settings' > 'Advanced Options...' It will open SumatraPDF-settings.txt
file in the text editor.
Then change the hex value of BackgroundColor
option under FixedPageUI
or any other corresponding *UI section.
More details http://blog.kowalczyk.info/software/sumatrapdf/settings.html
add a comment |
up vote
1
down vote
up vote
1
down vote
Go to 'Settings' > 'Advanced Options...' It will open SumatraPDF-settings.txt
file in the text editor.
Then change the hex value of BackgroundColor
option under FixedPageUI
or any other corresponding *UI section.
More details http://blog.kowalczyk.info/software/sumatrapdf/settings.html
Go to 'Settings' > 'Advanced Options...' It will open SumatraPDF-settings.txt
file in the text editor.
Then change the hex value of BackgroundColor
option under FixedPageUI
or any other corresponding *UI section.
More details http://blog.kowalczyk.info/software/sumatrapdf/settings.html
answered Feb 10 '14 at 17:00
Nufail
37148
37148
add a comment |
add a comment |
up vote
1
down vote
If you use dark theme for windows colors and want it used on SumatraPDF. Find SumatraPDF/SumatraPDF_settings.txt
and one of the first lines UseSysColors
can be changed from false
to true
.
add a comment |
up vote
1
down vote
If you use dark theme for windows colors and want it used on SumatraPDF. Find SumatraPDF/SumatraPDF_settings.txt
and one of the first lines UseSysColors
can be changed from false
to true
.
add a comment |
up vote
1
down vote
up vote
1
down vote
If you use dark theme for windows colors and want it used on SumatraPDF. Find SumatraPDF/SumatraPDF_settings.txt
and one of the first lines UseSysColors
can be changed from false
to true
.
If you use dark theme for windows colors and want it used on SumatraPDF. Find SumatraPDF/SumatraPDF_settings.txt
and one of the first lines UseSysColors
can be changed from false
to true
.
edited Sep 17 '15 at 2:00
JakeGould
30.8k1093137
30.8k1093137
answered Sep 17 '15 at 1:22
mononull
111
111
add a comment |
add a comment |
up vote
0
down vote
Unfortunately, I believe it's not possible.
The -bgcolor argument will only change the background color of the start-up screen.
thanks. i emailed the creater of reader to see if he can help
– benny856694
Oct 7 '09 at 9:11
add a comment |
up vote
0
down vote
Unfortunately, I believe it's not possible.
The -bgcolor argument will only change the background color of the start-up screen.
thanks. i emailed the creater of reader to see if he can help
– benny856694
Oct 7 '09 at 9:11
add a comment |
up vote
0
down vote
up vote
0
down vote
Unfortunately, I believe it's not possible.
The -bgcolor argument will only change the background color of the start-up screen.
Unfortunately, I believe it's not possible.
The -bgcolor argument will only change the background color of the start-up screen.
answered Oct 7 '09 at 9:09
kaba
348310
348310
thanks. i emailed the creater of reader to see if he can help
– benny856694
Oct 7 '09 at 9:11
add a comment |
thanks. i emailed the creater of reader to see if he can help
– benny856694
Oct 7 '09 at 9:11
thanks. i emailed the creater of reader to see if he can help
– benny856694
Oct 7 '09 at 9:11
thanks. i emailed the creater of reader to see if he can help
– benny856694
Oct 7 '09 at 9:11
add a comment |
up vote
0
down vote
Actually you are right about the fixed UI setting, but my version of sumatraPDF
, kept the book colour yellow, even if app was black.
So, I looked at the file more closely and found this in ebook section
:
UseFixedPageUI = false
I just set it to true
to fix it. You have to do same for all instances where you want it to set a custom colour.
If your answer is good, you'll gain reputations enough to post an image. For the time being post a link to image. That will be good & If needed, you can edit it later to directly post the image.
– C0deDaedalus
May 25 at 9:04
add a comment |
up vote
0
down vote
Actually you are right about the fixed UI setting, but my version of sumatraPDF
, kept the book colour yellow, even if app was black.
So, I looked at the file more closely and found this in ebook section
:
UseFixedPageUI = false
I just set it to true
to fix it. You have to do same for all instances where you want it to set a custom colour.
If your answer is good, you'll gain reputations enough to post an image. For the time being post a link to image. That will be good & If needed, you can edit it later to directly post the image.
– C0deDaedalus
May 25 at 9:04
add a comment |
up vote
0
down vote
up vote
0
down vote
Actually you are right about the fixed UI setting, but my version of sumatraPDF
, kept the book colour yellow, even if app was black.
So, I looked at the file more closely and found this in ebook section
:
UseFixedPageUI = false
I just set it to true
to fix it. You have to do same for all instances where you want it to set a custom colour.
Actually you are right about the fixed UI setting, but my version of sumatraPDF
, kept the book colour yellow, even if app was black.
So, I looked at the file more closely and found this in ebook section
:
UseFixedPageUI = false
I just set it to true
to fix it. You have to do same for all instances where you want it to set a custom colour.
edited May 25 at 10:16
C0deDaedalus
1,0611216
1,0611216
answered May 25 at 7:00
North
1
1
If your answer is good, you'll gain reputations enough to post an image. For the time being post a link to image. That will be good & If needed, you can edit it later to directly post the image.
– C0deDaedalus
May 25 at 9:04
add a comment |
If your answer is good, you'll gain reputations enough to post an image. For the time being post a link to image. That will be good & If needed, you can edit it later to directly post the image.
– C0deDaedalus
May 25 at 9:04
If your answer is good, you'll gain reputations enough to post an image. For the time being post a link to image. That will be good & If needed, you can edit it later to directly post the image.
– C0deDaedalus
May 25 at 9:04
If your answer is good, you'll gain reputations enough to post an image. For the time being post a link to image. That will be good & If needed, you can edit it later to directly post the image.
– C0deDaedalus
May 25 at 9:04
add a comment |
up vote
-1
down vote
To change background color in last version of SumatraPDF go to Settings -> Advanced Options, change - BackgroundColor option in FixedPageUI part.
Like this:
FixedPageUI
[
TextColor = #000000 (change foreground text color)
BackgroundColor = #f0f0f0 (change background color)
SelectionColor = #f5fc0c
WindowMargin = 1 0 1 0
PageSpacing = 2 2
]
add a comment |
up vote
-1
down vote
To change background color in last version of SumatraPDF go to Settings -> Advanced Options, change - BackgroundColor option in FixedPageUI part.
Like this:
FixedPageUI
[
TextColor = #000000 (change foreground text color)
BackgroundColor = #f0f0f0 (change background color)
SelectionColor = #f5fc0c
WindowMargin = 1 0 1 0
PageSpacing = 2 2
]
add a comment |
up vote
-1
down vote
up vote
-1
down vote
To change background color in last version of SumatraPDF go to Settings -> Advanced Options, change - BackgroundColor option in FixedPageUI part.
Like this:
FixedPageUI
[
TextColor = #000000 (change foreground text color)
BackgroundColor = #f0f0f0 (change background color)
SelectionColor = #f5fc0c
WindowMargin = 1 0 1 0
PageSpacing = 2 2
]
To change background color in last version of SumatraPDF go to Settings -> Advanced Options, change - BackgroundColor option in FixedPageUI part.
Like this:
FixedPageUI
[
TextColor = #000000 (change foreground text color)
BackgroundColor = #f0f0f0 (change background color)
SelectionColor = #f5fc0c
WindowMargin = 1 0 1 0
PageSpacing = 2 2
]
answered Jan 8 '17 at 10:25
zh_
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f52133%2fhow-to-change-the-background-color-in-sumatrapdf-reader%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown