How to find out 70% mid blue (#686e9f) The Next CEO of Stack OverflowHow can I color Python logging output?Why rgb and not ryb?Given an RGB value, how do I create a tint (or shade)?How to find out light, medium and dark color?Create a custom color palette in RHex transparency in colorsHow can I get the iOS 7 default blue color programmatically?What does the number next to a color mean?plotly - where can I find the default color palette used in plotly packageAndroid - Convert ARGB Color to RGB
Is it my responsibility to learn a new technology in my own time my employer wants to implement?
How to write papers efficiently when English isn't my first language?
How do scammers retract money, while you can’t?
How to make a variable always equal to the result of some calculations?
How can I open an app using Terminal?
Can I equip Skullclamp on a creature I am sacrificing?
How do I go from 300 unfinished/half written blog posts, to published posts?
How to start emacs in "nothing" mode (`fundamental-mode`)
Why did we only see the N-1 starfighters in one film?
The King's new dress
How to safely derail a train during transit?
If the heap is initialized for security, then why is the stack uninitialized?
Can a caster that cast Polymorph on themselves stop concentrating at any point even if their Int is low?
How to make a software documentation "officially" citable?
Where to find order of arguments for default functions
What does this shorthand mean?
Is it a good idea to use COLUMN AS (left([Another_Column],(4)) instead of LEFT in the select?
Science fiction (dystopian) short story set after WWIII
How do spells that require an ability check vs. the caster's spell save DC work?
% symbol leads to superlong (forever?) compilations
Why do professional authors make "consistency" mistakes? And how to avoid them?
Can a single photon have an energy density?
Inappropriate reference requests from Journal reviewers
How do we know the LHC results are robust?
How to find out 70% mid blue (#686e9f)
The Next CEO of Stack OverflowHow can I color Python logging output?Why rgb and not ryb?Given an RGB value, how do I create a tint (or shade)?How to find out light, medium and dark color?Create a custom color palette in RHex transparency in colorsHow can I get the iOS 7 default blue color programmatically?What does the number next to a color mean?plotly - where can I find the default color palette used in plotly packageAndroid - Convert ARGB Color to RGB
My company launched a new branding. I'm creating palettes to rework on numerous websites. One of the colors is named Mid blue (#686E9F) and an associated color is Mid Blue Tint as 70% Mid blue but no RGB/Hex values.
How to find out 70% mid blue (#686e9f)?
Reference:
colors
add a comment |
My company launched a new branding. I'm creating palettes to rework on numerous websites. One of the colors is named Mid blue (#686E9F) and an associated color is Mid Blue Tint as 70% Mid blue but no RGB/Hex values.
How to find out 70% mid blue (#686e9f)?
Reference:
colors
1
It depends entirely on what they mean by 70%. 70% what? Opacity? Brightness? Saturation? We can't tell you.
– Quentin
Mar 7 at 14:18
I mentioned "tint"
– Hassan Gulzar
Mar 7 at 14:23
@HassanGulzar SO is my answer was helpful ? Did you managed to get your color ?
– Greco Jonathan
yesterday
@GrecoJonathan Nope. I have not found the color still.
– Hassan Gulzar
yesterday
add a comment |
My company launched a new branding. I'm creating palettes to rework on numerous websites. One of the colors is named Mid blue (#686E9F) and an associated color is Mid Blue Tint as 70% Mid blue but no RGB/Hex values.
How to find out 70% mid blue (#686e9f)?
Reference:
colors
My company launched a new branding. I'm creating palettes to rework on numerous websites. One of the colors is named Mid blue (#686E9F) and an associated color is Mid Blue Tint as 70% Mid blue but no RGB/Hex values.
How to find out 70% mid blue (#686e9f)?
Reference:
colors
colors
edited Mar 7 at 14:27
Hassan Gulzar
asked Mar 7 at 14:08
Hassan GulzarHassan Gulzar
2,01822557
2,01822557
1
It depends entirely on what they mean by 70%. 70% what? Opacity? Brightness? Saturation? We can't tell you.
– Quentin
Mar 7 at 14:18
I mentioned "tint"
– Hassan Gulzar
Mar 7 at 14:23
@HassanGulzar SO is my answer was helpful ? Did you managed to get your color ?
– Greco Jonathan
yesterday
@GrecoJonathan Nope. I have not found the color still.
– Hassan Gulzar
yesterday
add a comment |
1
It depends entirely on what they mean by 70%. 70% what? Opacity? Brightness? Saturation? We can't tell you.
– Quentin
Mar 7 at 14:18
I mentioned "tint"
– Hassan Gulzar
Mar 7 at 14:23
@HassanGulzar SO is my answer was helpful ? Did you managed to get your color ?
– Greco Jonathan
yesterday
@GrecoJonathan Nope. I have not found the color still.
– Hassan Gulzar
yesterday
1
1
It depends entirely on what they mean by 70%. 70% what? Opacity? Brightness? Saturation? We can't tell you.
– Quentin
Mar 7 at 14:18
It depends entirely on what they mean by 70%. 70% what? Opacity? Brightness? Saturation? We can't tell you.
– Quentin
Mar 7 at 14:18
I mentioned "tint"
– Hassan Gulzar
Mar 7 at 14:23
I mentioned "tint"
– Hassan Gulzar
Mar 7 at 14:23
@HassanGulzar SO is my answer was helpful ? Did you managed to get your color ?
– Greco Jonathan
yesterday
@HassanGulzar SO is my answer was helpful ? Did you managed to get your color ?
– Greco Jonathan
yesterday
@GrecoJonathan Nope. I have not found the color still.
– Hassan Gulzar
yesterday
@GrecoJonathan Nope. I have not found the color still.
– Hassan Gulzar
yesterday
add a comment |
3 Answers
3
active
oldest
votes
In fact you can find it by using the opacity.
Your blue "tint" is the same as your #686e9f
wich means this rgba representation rgba(104,110,159). And with 0.70 opacity on this you get back your color.
to test you can paste this rgba(104,110,159,0.7)
on this website :
http://www.menucool.com/rgba-color-picker
add a comment |
So you could begin to translate the hex-number into RGB values
-> https://www.rgbtohex.net/hextorgb/
Then I presume you could multiply those values with 0.7, if I understand this 70% stuff correctly.
add a comment |
If I understood your question correctly and you were asking for a RGB representation:
rgb(104, 110, 159)
68 -> 104
6e -> 110
9f -> 159
The hex value is just a RGB value in hexadecimal. IF you were looking for something else, please specify a clear question.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fstackoverflow.com%2fquestions%2f55045761%2fhow-to-find-out-70-mid-blue-686e9f%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
In fact you can find it by using the opacity.
Your blue "tint" is the same as your #686e9f
wich means this rgba representation rgba(104,110,159). And with 0.70 opacity on this you get back your color.
to test you can paste this rgba(104,110,159,0.7)
on this website :
http://www.menucool.com/rgba-color-picker
add a comment |
In fact you can find it by using the opacity.
Your blue "tint" is the same as your #686e9f
wich means this rgba representation rgba(104,110,159). And with 0.70 opacity on this you get back your color.
to test you can paste this rgba(104,110,159,0.7)
on this website :
http://www.menucool.com/rgba-color-picker
add a comment |
In fact you can find it by using the opacity.
Your blue "tint" is the same as your #686e9f
wich means this rgba representation rgba(104,110,159). And with 0.70 opacity on this you get back your color.
to test you can paste this rgba(104,110,159,0.7)
on this website :
http://www.menucool.com/rgba-color-picker
In fact you can find it by using the opacity.
Your blue "tint" is the same as your #686e9f
wich means this rgba representation rgba(104,110,159). And with 0.70 opacity on this you get back your color.
to test you can paste this rgba(104,110,159,0.7)
on this website :
http://www.menucool.com/rgba-color-picker
edited Mar 7 at 14:58
answered Mar 7 at 14:46
Greco JonathanGreco Jonathan
1,62921842
1,62921842
add a comment |
add a comment |
So you could begin to translate the hex-number into RGB values
-> https://www.rgbtohex.net/hextorgb/
Then I presume you could multiply those values with 0.7, if I understand this 70% stuff correctly.
add a comment |
So you could begin to translate the hex-number into RGB values
-> https://www.rgbtohex.net/hextorgb/
Then I presume you could multiply those values with 0.7, if I understand this 70% stuff correctly.
add a comment |
So you could begin to translate the hex-number into RGB values
-> https://www.rgbtohex.net/hextorgb/
Then I presume you could multiply those values with 0.7, if I understand this 70% stuff correctly.
So you could begin to translate the hex-number into RGB values
-> https://www.rgbtohex.net/hextorgb/
Then I presume you could multiply those values with 0.7, if I understand this 70% stuff correctly.
answered Mar 7 at 14:14
Richard LenkiewiczRichard Lenkiewicz
594
594
add a comment |
add a comment |
If I understood your question correctly and you were asking for a RGB representation:
rgb(104, 110, 159)
68 -> 104
6e -> 110
9f -> 159
The hex value is just a RGB value in hexadecimal. IF you were looking for something else, please specify a clear question.
add a comment |
If I understood your question correctly and you were asking for a RGB representation:
rgb(104, 110, 159)
68 -> 104
6e -> 110
9f -> 159
The hex value is just a RGB value in hexadecimal. IF you were looking for something else, please specify a clear question.
add a comment |
If I understood your question correctly and you were asking for a RGB representation:
rgb(104, 110, 159)
68 -> 104
6e -> 110
9f -> 159
The hex value is just a RGB value in hexadecimal. IF you were looking for something else, please specify a clear question.
If I understood your question correctly and you were asking for a RGB representation:
rgb(104, 110, 159)
68 -> 104
6e -> 110
9f -> 159
The hex value is just a RGB value in hexadecimal. IF you were looking for something else, please specify a clear question.
answered Mar 7 at 14:11
maio290maio290
2,083615
2,083615
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f55045761%2fhow-to-find-out-70-mid-blue-686e9f%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
1
It depends entirely on what they mean by 70%. 70% what? Opacity? Brightness? Saturation? We can't tell you.
– Quentin
Mar 7 at 14:18
I mentioned "tint"
– Hassan Gulzar
Mar 7 at 14:23
@HassanGulzar SO is my answer was helpful ? Did you managed to get your color ?
– Greco Jonathan
yesterday
@GrecoJonathan Nope. I have not found the color still.
– Hassan Gulzar
yesterday