Why white transparent color becomes grey?
I'm trying to make a figure which use transparency in tikz. The figure consists in two overlapping rectangles. One which fading to the right and the other to the left. The rectangle fading to the right is pretty easy to make:
fill[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
However, I cannot make the other rectangle as I want. I want it to be white on the left and blue on the right. It must also be transparent (having a alpha value equal to 70%). I tried multiple things such as using tikzfading
or defining an opacity level in the fill
command. Here is a [mcve]:
documentclass{standalone}
usepackage{tikz}
usetikzlibrary{fadings}
begin{document}
%leftmost figure
begin{tikzpicture}
tikzfading[name=fade right,
left color=transparent!0,
right color=transparent!100]
tikzfading[name=fade left,
right color=transparent!0,
left color=transparent!70!white]
fill[blue, path fading=fade right] (0, 1) rectangle (3, 3);
fill[blue, path fading=fade left] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%middle figure
begin{tikzpicture}
fill[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
fill[shading=axis, left color=white!70!transparent, right color=blue] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%rightmost figure
begin{tikzpicture}
fill[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
fill[shading=axis, left color=white, right color=blue, opacity=.7] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
end{document}
which gives the following result:
While the leftmost figure has the second rectangle transparent on the left, it does not apply a white filter on the first rectangle. On the second figure this rectangle does not have any transparency property. Finally the rectangle of rightmost figure does have transparency but the white which has an opacity level equal to 0.7 turn to be grey. What I want to achieve is to draw a rectangle which has the color 255,255,255 in RGB and an alpha value around 180 on the left side. Is that possible ?
tikz-pgf color transparency
add a comment |
I'm trying to make a figure which use transparency in tikz. The figure consists in two overlapping rectangles. One which fading to the right and the other to the left. The rectangle fading to the right is pretty easy to make:
fill[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
However, I cannot make the other rectangle as I want. I want it to be white on the left and blue on the right. It must also be transparent (having a alpha value equal to 70%). I tried multiple things such as using tikzfading
or defining an opacity level in the fill
command. Here is a [mcve]:
documentclass{standalone}
usepackage{tikz}
usetikzlibrary{fadings}
begin{document}
%leftmost figure
begin{tikzpicture}
tikzfading[name=fade right,
left color=transparent!0,
right color=transparent!100]
tikzfading[name=fade left,
right color=transparent!0,
left color=transparent!70!white]
fill[blue, path fading=fade right] (0, 1) rectangle (3, 3);
fill[blue, path fading=fade left] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%middle figure
begin{tikzpicture}
fill[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
fill[shading=axis, left color=white!70!transparent, right color=blue] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%rightmost figure
begin{tikzpicture}
fill[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
fill[shading=axis, left color=white, right color=blue, opacity=.7] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
end{document}
which gives the following result:
While the leftmost figure has the second rectangle transparent on the left, it does not apply a white filter on the first rectangle. On the second figure this rectangle does not have any transparency property. Finally the rectangle of rightmost figure does have transparency but the white which has an opacity level equal to 0.7 turn to be grey. What I want to achieve is to draw a rectangle which has the color 255,255,255 in RGB and an alpha value around 180 on the left side. Is that possible ?
tikz-pgf color transparency
3
Welcome to TeX.SE! I guess the issue is thatfill
andshade
are different, see here.
– marmot
Dec 13 '18 at 10:42
add a comment |
I'm trying to make a figure which use transparency in tikz. The figure consists in two overlapping rectangles. One which fading to the right and the other to the left. The rectangle fading to the right is pretty easy to make:
fill[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
However, I cannot make the other rectangle as I want. I want it to be white on the left and blue on the right. It must also be transparent (having a alpha value equal to 70%). I tried multiple things such as using tikzfading
or defining an opacity level in the fill
command. Here is a [mcve]:
documentclass{standalone}
usepackage{tikz}
usetikzlibrary{fadings}
begin{document}
%leftmost figure
begin{tikzpicture}
tikzfading[name=fade right,
left color=transparent!0,
right color=transparent!100]
tikzfading[name=fade left,
right color=transparent!0,
left color=transparent!70!white]
fill[blue, path fading=fade right] (0, 1) rectangle (3, 3);
fill[blue, path fading=fade left] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%middle figure
begin{tikzpicture}
fill[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
fill[shading=axis, left color=white!70!transparent, right color=blue] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%rightmost figure
begin{tikzpicture}
fill[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
fill[shading=axis, left color=white, right color=blue, opacity=.7] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
end{document}
which gives the following result:
While the leftmost figure has the second rectangle transparent on the left, it does not apply a white filter on the first rectangle. On the second figure this rectangle does not have any transparency property. Finally the rectangle of rightmost figure does have transparency but the white which has an opacity level equal to 0.7 turn to be grey. What I want to achieve is to draw a rectangle which has the color 255,255,255 in RGB and an alpha value around 180 on the left side. Is that possible ?
tikz-pgf color transparency
I'm trying to make a figure which use transparency in tikz. The figure consists in two overlapping rectangles. One which fading to the right and the other to the left. The rectangle fading to the right is pretty easy to make:
fill[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
However, I cannot make the other rectangle as I want. I want it to be white on the left and blue on the right. It must also be transparent (having a alpha value equal to 70%). I tried multiple things such as using tikzfading
or defining an opacity level in the fill
command. Here is a [mcve]:
documentclass{standalone}
usepackage{tikz}
usetikzlibrary{fadings}
begin{document}
%leftmost figure
begin{tikzpicture}
tikzfading[name=fade right,
left color=transparent!0,
right color=transparent!100]
tikzfading[name=fade left,
right color=transparent!0,
left color=transparent!70!white]
fill[blue, path fading=fade right] (0, 1) rectangle (3, 3);
fill[blue, path fading=fade left] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%middle figure
begin{tikzpicture}
fill[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
fill[shading=axis, left color=white!70!transparent, right color=blue] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%rightmost figure
begin{tikzpicture}
fill[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
fill[shading=axis, left color=white, right color=blue, opacity=.7] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
end{document}
which gives the following result:
While the leftmost figure has the second rectangle transparent on the left, it does not apply a white filter on the first rectangle. On the second figure this rectangle does not have any transparency property. Finally the rectangle of rightmost figure does have transparency but the white which has an opacity level equal to 0.7 turn to be grey. What I want to achieve is to draw a rectangle which has the color 255,255,255 in RGB and an alpha value around 180 on the left side. Is that possible ?
tikz-pgf color transparency
tikz-pgf color transparency
asked Dec 13 '18 at 10:27
MissuMissu
1534
1534
3
Welcome to TeX.SE! I guess the issue is thatfill
andshade
are different, see here.
– marmot
Dec 13 '18 at 10:42
add a comment |
3
Welcome to TeX.SE! I guess the issue is thatfill
andshade
are different, see here.
– marmot
Dec 13 '18 at 10:42
3
3
Welcome to TeX.SE! I guess the issue is that
fill
and shade
are different, see here.– marmot
Dec 13 '18 at 10:42
Welcome to TeX.SE! I guess the issue is that
fill
and shade
are different, see here.– marmot
Dec 13 '18 at 10:42
add a comment |
1 Answer
1
active
oldest
votes
If you replace fill
by shade
in the middle and right figures, you get
documentclass{standalone}
usepackage{tikz}
usetikzlibrary{fadings}
begin{document}
%leftmost figure
begin{tikzpicture}
tikzfading[name=fade right,
left color=transparent!0,
right color=transparent!100]
tikzfading[name=fade left,
right color=transparent!0,
left color=transparent!70!white]
fill[blue, path fading=fade right] (0, 1) rectangle (3, 3);
fill[blue, path fading=fade left] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%middle figure
begin{tikzpicture}
shade[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
shade[shading=axis, left color=white!70!transparent, right color=blue] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%rightmost figure
begin{tikzpicture}
shade[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
shade[shading=axis, left color=white, right color=blue, opacity=.7] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
end{document}
Is that what you want?
The rightmost figure is exactly what I was aiming for
– Missu
Dec 13 '18 at 10:49
1
@Missu Glad to hear! (Yes, this is a bit confusing since if you do not say fill, but just saypath
TikZ will "guess" that you meanshade
, but if you say fill, it will fill in addition to shading. And unfortunately filling and shading an area are sometimes used interchangedly, so we could blame this on the language. ;-)
– marmot
Dec 13 '18 at 10:57
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2ftex.stackexchange.com%2fquestions%2f464667%2fwhy-white-transparent-color-becomes-grey%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you replace fill
by shade
in the middle and right figures, you get
documentclass{standalone}
usepackage{tikz}
usetikzlibrary{fadings}
begin{document}
%leftmost figure
begin{tikzpicture}
tikzfading[name=fade right,
left color=transparent!0,
right color=transparent!100]
tikzfading[name=fade left,
right color=transparent!0,
left color=transparent!70!white]
fill[blue, path fading=fade right] (0, 1) rectangle (3, 3);
fill[blue, path fading=fade left] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%middle figure
begin{tikzpicture}
shade[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
shade[shading=axis, left color=white!70!transparent, right color=blue] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%rightmost figure
begin{tikzpicture}
shade[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
shade[shading=axis, left color=white, right color=blue, opacity=.7] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
end{document}
Is that what you want?
The rightmost figure is exactly what I was aiming for
– Missu
Dec 13 '18 at 10:49
1
@Missu Glad to hear! (Yes, this is a bit confusing since if you do not say fill, but just saypath
TikZ will "guess" that you meanshade
, but if you say fill, it will fill in addition to shading. And unfortunately filling and shading an area are sometimes used interchangedly, so we could blame this on the language. ;-)
– marmot
Dec 13 '18 at 10:57
add a comment |
If you replace fill
by shade
in the middle and right figures, you get
documentclass{standalone}
usepackage{tikz}
usetikzlibrary{fadings}
begin{document}
%leftmost figure
begin{tikzpicture}
tikzfading[name=fade right,
left color=transparent!0,
right color=transparent!100]
tikzfading[name=fade left,
right color=transparent!0,
left color=transparent!70!white]
fill[blue, path fading=fade right] (0, 1) rectangle (3, 3);
fill[blue, path fading=fade left] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%middle figure
begin{tikzpicture}
shade[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
shade[shading=axis, left color=white!70!transparent, right color=blue] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%rightmost figure
begin{tikzpicture}
shade[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
shade[shading=axis, left color=white, right color=blue, opacity=.7] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
end{document}
Is that what you want?
The rightmost figure is exactly what I was aiming for
– Missu
Dec 13 '18 at 10:49
1
@Missu Glad to hear! (Yes, this is a bit confusing since if you do not say fill, but just saypath
TikZ will "guess" that you meanshade
, but if you say fill, it will fill in addition to shading. And unfortunately filling and shading an area are sometimes used interchangedly, so we could blame this on the language. ;-)
– marmot
Dec 13 '18 at 10:57
add a comment |
If you replace fill
by shade
in the middle and right figures, you get
documentclass{standalone}
usepackage{tikz}
usetikzlibrary{fadings}
begin{document}
%leftmost figure
begin{tikzpicture}
tikzfading[name=fade right,
left color=transparent!0,
right color=transparent!100]
tikzfading[name=fade left,
right color=transparent!0,
left color=transparent!70!white]
fill[blue, path fading=fade right] (0, 1) rectangle (3, 3);
fill[blue, path fading=fade left] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%middle figure
begin{tikzpicture}
shade[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
shade[shading=axis, left color=white!70!transparent, right color=blue] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%rightmost figure
begin{tikzpicture}
shade[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
shade[shading=axis, left color=white, right color=blue, opacity=.7] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
end{document}
Is that what you want?
If you replace fill
by shade
in the middle and right figures, you get
documentclass{standalone}
usepackage{tikz}
usetikzlibrary{fadings}
begin{document}
%leftmost figure
begin{tikzpicture}
tikzfading[name=fade right,
left color=transparent!0,
right color=transparent!100]
tikzfading[name=fade left,
right color=transparent!0,
left color=transparent!70!white]
fill[blue, path fading=fade right] (0, 1) rectangle (3, 3);
fill[blue, path fading=fade left] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%middle figure
begin{tikzpicture}
shade[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
shade[shading=axis, left color=white!70!transparent, right color=blue] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
%rightmost figure
begin{tikzpicture}
shade[shading=axis, left color=blue, right color=white] (0, 1) rectangle (3, 3);
shade[shading=axis, left color=white, right color=blue, opacity=.7] (0, 0) rectangle (2, 2.5);
end{tikzpicture}
end{document}
Is that what you want?
answered Dec 13 '18 at 10:46
marmotmarmot
98.2k4113218
98.2k4113218
The rightmost figure is exactly what I was aiming for
– Missu
Dec 13 '18 at 10:49
1
@Missu Glad to hear! (Yes, this is a bit confusing since if you do not say fill, but just saypath
TikZ will "guess" that you meanshade
, but if you say fill, it will fill in addition to shading. And unfortunately filling and shading an area are sometimes used interchangedly, so we could blame this on the language. ;-)
– marmot
Dec 13 '18 at 10:57
add a comment |
The rightmost figure is exactly what I was aiming for
– Missu
Dec 13 '18 at 10:49
1
@Missu Glad to hear! (Yes, this is a bit confusing since if you do not say fill, but just saypath
TikZ will "guess" that you meanshade
, but if you say fill, it will fill in addition to shading. And unfortunately filling and shading an area are sometimes used interchangedly, so we could blame this on the language. ;-)
– marmot
Dec 13 '18 at 10:57
The rightmost figure is exactly what I was aiming for
– Missu
Dec 13 '18 at 10:49
The rightmost figure is exactly what I was aiming for
– Missu
Dec 13 '18 at 10:49
1
1
@Missu Glad to hear! (Yes, this is a bit confusing since if you do not say fill, but just say
path
TikZ will "guess" that you mean shade
, but if you say fill, it will fill in addition to shading. And unfortunately filling and shading an area are sometimes used interchangedly, so we could blame this on the language. ;-)– marmot
Dec 13 '18 at 10:57
@Missu Glad to hear! (Yes, this is a bit confusing since if you do not say fill, but just say
path
TikZ will "guess" that you mean shade
, but if you say fill, it will fill in addition to shading. And unfortunately filling and shading an area are sometimes used interchangedly, so we could blame this on the language. ;-)– marmot
Dec 13 '18 at 10:57
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- 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%2ftex.stackexchange.com%2fquestions%2f464667%2fwhy-white-transparent-color-becomes-grey%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
3
Welcome to TeX.SE! I guess the issue is that
fill
andshade
are different, see here.– marmot
Dec 13 '18 at 10:42