tikz convert color string to hex valueDraw a palette box in LaTeXTool (or formula) that to convert RGB color...

Alternative to sending password over mail?

LaTeX: Why are digits allowed in environments, but forbidden in commands?

Is it unprofessional to ask if a job posting on GlassDoor is real?

What does the "remote control" for a QF-4 look like?

Can a Cauchy sequence converge for one metric while not converging for another?

What would happen to a modern skyscraper if it rains micro blackholes?

Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?

Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)

How does quantile regression compare to logistic regression with the variable split at the quantile?

How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?

Why are electrically insulating heatsinks so rare? Is it just cost?

Does an object always see its latest internal state irrespective of thread?

Important Resources for Dark Age Civilizations?

If human space travel is limited by the G force vulnerability, is there a way to counter G forces?

What is a clear way to write a bar that has an extra beat?

Are astronomers waiting to see something in an image from a gravitational lens that they've already seen in an adjacent image?

Do I have a twin with permutated remainders?

What typically incentivizes a professor to change jobs to a lower ranking university?

Which country benefited the most from UN Security Council vetoes?

Arrow those variables!

Is it legal for company to use my work email to pretend I still work there?

When a company launches a new product do they "come out" with a new product or do they "come up" with a new product?

Can I ask the recruiters in my resume to put the reason why I am rejected?

What are these boxed doors outside store fronts in New York?



tikz convert color string to hex value


Draw a palette box in LaTeXTool (or formula) that to convert RGB color to xcolor code (example of the type red!30!green)Drawing Hex BoardsHow to map value to color using TikZ?convert TikZ to XAMLTikZ/ERD: node (=Entity) label on the insideConvert tikz to includegraphicsAddplot color based on valueTikZ: Drawing an arc from an intersection to an intersectionProcedural Random Walk on Hex Grid using Tikz16x16 table filled with hex values in tikz with foreachDrawing string diagrams with TikZ













3















I wish to convert a color string to hex value in tikz.



documentclass[border=1mm]{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}
tikzset{box/.style={draw,outer sep=0,minimum size=1cm}}
defdy{1}
foreach col [count=i] in {red,orange,yellow,green,cyan,blue,purple} {
defmycol{col!40!gray}
node[box,yshift=1cm*i*dy,fill=mycol,label=left:mycol] (main) {ABC};
}
end{tikzpicture}
end{document}


So I wish show red!40!grey to something like #xxxxxxxx but not show how can do such convert!










share|improve this question


















  • 1





    I believe this question also deals with the issue of color conversion to hex: tex.stackexchange.com/questions/475007/… See also the binhex.tex package.

    – Steven B. Segletes
    4 hours ago













  • @StevenB.Segletes Your answer is definitely a great step towards a solution but does it also work if the colors are defined in the way the OP does? If so, your answer may also be mentioned under this answer.

    – marmot
    2 hours ago











  • I think combining my answer with the colorinfo package will allow what needs to be done.

    – Steven B. Segletes
    2 hours ago
















3















I wish to convert a color string to hex value in tikz.



documentclass[border=1mm]{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}
tikzset{box/.style={draw,outer sep=0,minimum size=1cm}}
defdy{1}
foreach col [count=i] in {red,orange,yellow,green,cyan,blue,purple} {
defmycol{col!40!gray}
node[box,yshift=1cm*i*dy,fill=mycol,label=left:mycol] (main) {ABC};
}
end{tikzpicture}
end{document}


So I wish show red!40!grey to something like #xxxxxxxx but not show how can do such convert!










share|improve this question


















  • 1





    I believe this question also deals with the issue of color conversion to hex: tex.stackexchange.com/questions/475007/… See also the binhex.tex package.

    – Steven B. Segletes
    4 hours ago













  • @StevenB.Segletes Your answer is definitely a great step towards a solution but does it also work if the colors are defined in the way the OP does? If so, your answer may also be mentioned under this answer.

    – marmot
    2 hours ago











  • I think combining my answer with the colorinfo package will allow what needs to be done.

    – Steven B. Segletes
    2 hours ago














3












3








3








I wish to convert a color string to hex value in tikz.



documentclass[border=1mm]{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}
tikzset{box/.style={draw,outer sep=0,minimum size=1cm}}
defdy{1}
foreach col [count=i] in {red,orange,yellow,green,cyan,blue,purple} {
defmycol{col!40!gray}
node[box,yshift=1cm*i*dy,fill=mycol,label=left:mycol] (main) {ABC};
}
end{tikzpicture}
end{document}


So I wish show red!40!grey to something like #xxxxxxxx but not show how can do such convert!










share|improve this question














I wish to convert a color string to hex value in tikz.



documentclass[border=1mm]{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}
tikzset{box/.style={draw,outer sep=0,minimum size=1cm}}
defdy{1}
foreach col [count=i] in {red,orange,yellow,green,cyan,blue,purple} {
defmycol{col!40!gray}
node[box,yshift=1cm*i*dy,fill=mycol,label=left:mycol] (main) {ABC};
}
end{tikzpicture}
end{document}


So I wish show red!40!grey to something like #xxxxxxxx but not show how can do such convert!







tikz-pgf






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 4 hours ago









lucky1928lucky1928

1,2581916




1,2581916








  • 1





    I believe this question also deals with the issue of color conversion to hex: tex.stackexchange.com/questions/475007/… See also the binhex.tex package.

    – Steven B. Segletes
    4 hours ago













  • @StevenB.Segletes Your answer is definitely a great step towards a solution but does it also work if the colors are defined in the way the OP does? If so, your answer may also be mentioned under this answer.

    – marmot
    2 hours ago











  • I think combining my answer with the colorinfo package will allow what needs to be done.

    – Steven B. Segletes
    2 hours ago














  • 1





    I believe this question also deals with the issue of color conversion to hex: tex.stackexchange.com/questions/475007/… See also the binhex.tex package.

    – Steven B. Segletes
    4 hours ago













  • @StevenB.Segletes Your answer is definitely a great step towards a solution but does it also work if the colors are defined in the way the OP does? If so, your answer may also be mentioned under this answer.

    – marmot
    2 hours ago











  • I think combining my answer with the colorinfo package will allow what needs to be done.

    – Steven B. Segletes
    2 hours ago








1




1





I believe this question also deals with the issue of color conversion to hex: tex.stackexchange.com/questions/475007/… See also the binhex.tex package.

– Steven B. Segletes
4 hours ago







I believe this question also deals with the issue of color conversion to hex: tex.stackexchange.com/questions/475007/… See also the binhex.tex package.

– Steven B. Segletes
4 hours ago















@StevenB.Segletes Your answer is definitely a great step towards a solution but does it also work if the colors are defined in the way the OP does? If so, your answer may also be mentioned under this answer.

– marmot
2 hours ago





@StevenB.Segletes Your answer is definitely a great step towards a solution but does it also work if the colors are defined in the way the OP does? If so, your answer may also be mentioned under this answer.

– marmot
2 hours ago













I think combining my answer with the colorinfo package will allow what needs to be done.

– Steven B. Segletes
2 hours ago





I think combining my answer with the colorinfo package will allow what needs to be done.

– Steven B. Segletes
2 hours ago










2 Answers
2






active

oldest

votes


















4














Perhaps this (with extractcolorspecs and convertcolorspec from the xcolor package, loaded by the tikz package)?



documentclass[border=1mm]{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}
tikzset{box/.style={draw,outer sep=0,minimum size=1cm}}
defdy{1}
foreach col [count=i] in {red,orange,yellow,green,cyan,blue,purple} {
defmycol{col!40!gray}
extractcolorspecs{mycol}{modelcmd}{colorcmd}
convertcolorspec{modelcmd}{colorcmd}{HTML}hex
node[box,yshift=1cm*i*dy,fill=mycol,label=left:mycol] (main) {#hex};
}
end{tikzpicture}
end{document}


enter image description here






share|improve this answer

































    2














    Not done in tikz, but rather using the colorinfo package to extract color information, and the binhex.tex package to convert the color info into hex format.



    Extending my answer here Draw a palette box in LaTeX to allow the specification in terms of LaTeX color specification.



    documentclass{article}
    usepackage{xcolor,stackengine,colorinfo}
    input binhex.tex
    newcommandpalbox[1]{{sffamilyfboxsep=5ptrelaxfboxrule=1ptrelaxfootnotesize%
    fcolorbox{gray!50}{gray!10}{%
    stackengine{8pt}{%
    colorbox[RGB]{#1}{rule{60pt}{0pt}rule{0pt}{60pt}}%
    }{%
    color{black!60}stackengine{12pt}{intohex{#1}}{saycolors{#1}}{U}{l}{F}{F}{S}%
    }{U}{l}{F}{F}{S}%
    }%
    }}
    newcommandsaycolors[1]{saycolorsaux#1relax}
    defsaycolorsaux#1 #2 #3relax{R:#1 G:#2 B:#3}
    newcommandintohex[1]{#intohexaux#1relax}
    defintohexaux#1 #2 #3relax{twodigithex{#1}twodigithex{#2}twodigithex{#3}}
    newcommandtwodigithex[1]{ifnum#1<16relax0fiMakeLowercase{hex{#1}}}

    newlengthrcomp
    newlengthgcomp
    newlengthbcomp
    newcommandcolcomponents[1]{expandaftercolcomponentsaux#1relax}
    defcolcomponentsaux#1,#2,#3relax{%
    setlengthrcomp{dimexpr255dimexpr#1ptrelax+.5ptrelax}%
    setlengthgcomp{dimexpr255dimexpr#2ptrelax+.5ptrelax}%
    setlengthbcomp{dimexpr255dimexpr#3ptrelax+.5ptrelax}%
    }
    newcommandtruncatergb[1]{expandaftertruncatergbaux#1relax}
    deftruncatergbaux#1.#2relax{#1}
    newcommandxpalbox[1]{%
    colorlet{mycolor}{#1}%
    setbox0=hbox{colorInfo{mycolor}}%
    colcomponents{colorValue}%
    edefRcomp{truncatergb{thercomp}}%
    edefGcomp{truncatergb{thegcomp}}%
    edefBcomp{truncatergb{thebcomp}}%
    edeftmp{expandafterexpandafterexpandafterRcomp
    expandafterexpandafterexpandafterspace
    expandafterGcompexpandafterspaceBcomp}%
    expandafterpalboxexpandafter{tmp} = colorbox{mycolor}{#1}%
    par
    }
    begin{document}
    xpalbox{blue!40!red!25}
    xpalbox{blue!60!green!45}
    end{document}


    enter image description here






    share|improve this answer


























      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
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483441%2ftikz-convert-color-string-to-hex-value%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      4














      Perhaps this (with extractcolorspecs and convertcolorspec from the xcolor package, loaded by the tikz package)?



      documentclass[border=1mm]{standalone}
      usepackage{tikz}
      begin{document}
      begin{tikzpicture}
      tikzset{box/.style={draw,outer sep=0,minimum size=1cm}}
      defdy{1}
      foreach col [count=i] in {red,orange,yellow,green,cyan,blue,purple} {
      defmycol{col!40!gray}
      extractcolorspecs{mycol}{modelcmd}{colorcmd}
      convertcolorspec{modelcmd}{colorcmd}{HTML}hex
      node[box,yshift=1cm*i*dy,fill=mycol,label=left:mycol] (main) {#hex};
      }
      end{tikzpicture}
      end{document}


      enter image description here






      share|improve this answer






























        4














        Perhaps this (with extractcolorspecs and convertcolorspec from the xcolor package, loaded by the tikz package)?



        documentclass[border=1mm]{standalone}
        usepackage{tikz}
        begin{document}
        begin{tikzpicture}
        tikzset{box/.style={draw,outer sep=0,minimum size=1cm}}
        defdy{1}
        foreach col [count=i] in {red,orange,yellow,green,cyan,blue,purple} {
        defmycol{col!40!gray}
        extractcolorspecs{mycol}{modelcmd}{colorcmd}
        convertcolorspec{modelcmd}{colorcmd}{HTML}hex
        node[box,yshift=1cm*i*dy,fill=mycol,label=left:mycol] (main) {#hex};
        }
        end{tikzpicture}
        end{document}


        enter image description here






        share|improve this answer




























          4












          4








          4







          Perhaps this (with extractcolorspecs and convertcolorspec from the xcolor package, loaded by the tikz package)?



          documentclass[border=1mm]{standalone}
          usepackage{tikz}
          begin{document}
          begin{tikzpicture}
          tikzset{box/.style={draw,outer sep=0,minimum size=1cm}}
          defdy{1}
          foreach col [count=i] in {red,orange,yellow,green,cyan,blue,purple} {
          defmycol{col!40!gray}
          extractcolorspecs{mycol}{modelcmd}{colorcmd}
          convertcolorspec{modelcmd}{colorcmd}{HTML}hex
          node[box,yshift=1cm*i*dy,fill=mycol,label=left:mycol] (main) {#hex};
          }
          end{tikzpicture}
          end{document}


          enter image description here






          share|improve this answer















          Perhaps this (with extractcolorspecs and convertcolorspec from the xcolor package, loaded by the tikz package)?



          documentclass[border=1mm]{standalone}
          usepackage{tikz}
          begin{document}
          begin{tikzpicture}
          tikzset{box/.style={draw,outer sep=0,minimum size=1cm}}
          defdy{1}
          foreach col [count=i] in {red,orange,yellow,green,cyan,blue,purple} {
          defmycol{col!40!gray}
          extractcolorspecs{mycol}{modelcmd}{colorcmd}
          convertcolorspec{modelcmd}{colorcmd}{HTML}hex
          node[box,yshift=1cm*i*dy,fill=mycol,label=left:mycol] (main) {#hex};
          }
          end{tikzpicture}
          end{document}


          enter image description here







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 1 hour ago

























          answered 2 hours ago









          quark67quark67

          765126




          765126























              2














              Not done in tikz, but rather using the colorinfo package to extract color information, and the binhex.tex package to convert the color info into hex format.



              Extending my answer here Draw a palette box in LaTeX to allow the specification in terms of LaTeX color specification.



              documentclass{article}
              usepackage{xcolor,stackengine,colorinfo}
              input binhex.tex
              newcommandpalbox[1]{{sffamilyfboxsep=5ptrelaxfboxrule=1ptrelaxfootnotesize%
              fcolorbox{gray!50}{gray!10}{%
              stackengine{8pt}{%
              colorbox[RGB]{#1}{rule{60pt}{0pt}rule{0pt}{60pt}}%
              }{%
              color{black!60}stackengine{12pt}{intohex{#1}}{saycolors{#1}}{U}{l}{F}{F}{S}%
              }{U}{l}{F}{F}{S}%
              }%
              }}
              newcommandsaycolors[1]{saycolorsaux#1relax}
              defsaycolorsaux#1 #2 #3relax{R:#1 G:#2 B:#3}
              newcommandintohex[1]{#intohexaux#1relax}
              defintohexaux#1 #2 #3relax{twodigithex{#1}twodigithex{#2}twodigithex{#3}}
              newcommandtwodigithex[1]{ifnum#1<16relax0fiMakeLowercase{hex{#1}}}

              newlengthrcomp
              newlengthgcomp
              newlengthbcomp
              newcommandcolcomponents[1]{expandaftercolcomponentsaux#1relax}
              defcolcomponentsaux#1,#2,#3relax{%
              setlengthrcomp{dimexpr255dimexpr#1ptrelax+.5ptrelax}%
              setlengthgcomp{dimexpr255dimexpr#2ptrelax+.5ptrelax}%
              setlengthbcomp{dimexpr255dimexpr#3ptrelax+.5ptrelax}%
              }
              newcommandtruncatergb[1]{expandaftertruncatergbaux#1relax}
              deftruncatergbaux#1.#2relax{#1}
              newcommandxpalbox[1]{%
              colorlet{mycolor}{#1}%
              setbox0=hbox{colorInfo{mycolor}}%
              colcomponents{colorValue}%
              edefRcomp{truncatergb{thercomp}}%
              edefGcomp{truncatergb{thegcomp}}%
              edefBcomp{truncatergb{thebcomp}}%
              edeftmp{expandafterexpandafterexpandafterRcomp
              expandafterexpandafterexpandafterspace
              expandafterGcompexpandafterspaceBcomp}%
              expandafterpalboxexpandafter{tmp} = colorbox{mycolor}{#1}%
              par
              }
              begin{document}
              xpalbox{blue!40!red!25}
              xpalbox{blue!60!green!45}
              end{document}


              enter image description here






              share|improve this answer






























                2














                Not done in tikz, but rather using the colorinfo package to extract color information, and the binhex.tex package to convert the color info into hex format.



                Extending my answer here Draw a palette box in LaTeX to allow the specification in terms of LaTeX color specification.



                documentclass{article}
                usepackage{xcolor,stackengine,colorinfo}
                input binhex.tex
                newcommandpalbox[1]{{sffamilyfboxsep=5ptrelaxfboxrule=1ptrelaxfootnotesize%
                fcolorbox{gray!50}{gray!10}{%
                stackengine{8pt}{%
                colorbox[RGB]{#1}{rule{60pt}{0pt}rule{0pt}{60pt}}%
                }{%
                color{black!60}stackengine{12pt}{intohex{#1}}{saycolors{#1}}{U}{l}{F}{F}{S}%
                }{U}{l}{F}{F}{S}%
                }%
                }}
                newcommandsaycolors[1]{saycolorsaux#1relax}
                defsaycolorsaux#1 #2 #3relax{R:#1 G:#2 B:#3}
                newcommandintohex[1]{#intohexaux#1relax}
                defintohexaux#1 #2 #3relax{twodigithex{#1}twodigithex{#2}twodigithex{#3}}
                newcommandtwodigithex[1]{ifnum#1<16relax0fiMakeLowercase{hex{#1}}}

                newlengthrcomp
                newlengthgcomp
                newlengthbcomp
                newcommandcolcomponents[1]{expandaftercolcomponentsaux#1relax}
                defcolcomponentsaux#1,#2,#3relax{%
                setlengthrcomp{dimexpr255dimexpr#1ptrelax+.5ptrelax}%
                setlengthgcomp{dimexpr255dimexpr#2ptrelax+.5ptrelax}%
                setlengthbcomp{dimexpr255dimexpr#3ptrelax+.5ptrelax}%
                }
                newcommandtruncatergb[1]{expandaftertruncatergbaux#1relax}
                deftruncatergbaux#1.#2relax{#1}
                newcommandxpalbox[1]{%
                colorlet{mycolor}{#1}%
                setbox0=hbox{colorInfo{mycolor}}%
                colcomponents{colorValue}%
                edefRcomp{truncatergb{thercomp}}%
                edefGcomp{truncatergb{thegcomp}}%
                edefBcomp{truncatergb{thebcomp}}%
                edeftmp{expandafterexpandafterexpandafterRcomp
                expandafterexpandafterexpandafterspace
                expandafterGcompexpandafterspaceBcomp}%
                expandafterpalboxexpandafter{tmp} = colorbox{mycolor}{#1}%
                par
                }
                begin{document}
                xpalbox{blue!40!red!25}
                xpalbox{blue!60!green!45}
                end{document}


                enter image description here






                share|improve this answer




























                  2












                  2








                  2







                  Not done in tikz, but rather using the colorinfo package to extract color information, and the binhex.tex package to convert the color info into hex format.



                  Extending my answer here Draw a palette box in LaTeX to allow the specification in terms of LaTeX color specification.



                  documentclass{article}
                  usepackage{xcolor,stackengine,colorinfo}
                  input binhex.tex
                  newcommandpalbox[1]{{sffamilyfboxsep=5ptrelaxfboxrule=1ptrelaxfootnotesize%
                  fcolorbox{gray!50}{gray!10}{%
                  stackengine{8pt}{%
                  colorbox[RGB]{#1}{rule{60pt}{0pt}rule{0pt}{60pt}}%
                  }{%
                  color{black!60}stackengine{12pt}{intohex{#1}}{saycolors{#1}}{U}{l}{F}{F}{S}%
                  }{U}{l}{F}{F}{S}%
                  }%
                  }}
                  newcommandsaycolors[1]{saycolorsaux#1relax}
                  defsaycolorsaux#1 #2 #3relax{R:#1 G:#2 B:#3}
                  newcommandintohex[1]{#intohexaux#1relax}
                  defintohexaux#1 #2 #3relax{twodigithex{#1}twodigithex{#2}twodigithex{#3}}
                  newcommandtwodigithex[1]{ifnum#1<16relax0fiMakeLowercase{hex{#1}}}

                  newlengthrcomp
                  newlengthgcomp
                  newlengthbcomp
                  newcommandcolcomponents[1]{expandaftercolcomponentsaux#1relax}
                  defcolcomponentsaux#1,#2,#3relax{%
                  setlengthrcomp{dimexpr255dimexpr#1ptrelax+.5ptrelax}%
                  setlengthgcomp{dimexpr255dimexpr#2ptrelax+.5ptrelax}%
                  setlengthbcomp{dimexpr255dimexpr#3ptrelax+.5ptrelax}%
                  }
                  newcommandtruncatergb[1]{expandaftertruncatergbaux#1relax}
                  deftruncatergbaux#1.#2relax{#1}
                  newcommandxpalbox[1]{%
                  colorlet{mycolor}{#1}%
                  setbox0=hbox{colorInfo{mycolor}}%
                  colcomponents{colorValue}%
                  edefRcomp{truncatergb{thercomp}}%
                  edefGcomp{truncatergb{thegcomp}}%
                  edefBcomp{truncatergb{thebcomp}}%
                  edeftmp{expandafterexpandafterexpandafterRcomp
                  expandafterexpandafterexpandafterspace
                  expandafterGcompexpandafterspaceBcomp}%
                  expandafterpalboxexpandafter{tmp} = colorbox{mycolor}{#1}%
                  par
                  }
                  begin{document}
                  xpalbox{blue!40!red!25}
                  xpalbox{blue!60!green!45}
                  end{document}


                  enter image description here






                  share|improve this answer















                  Not done in tikz, but rather using the colorinfo package to extract color information, and the binhex.tex package to convert the color info into hex format.



                  Extending my answer here Draw a palette box in LaTeX to allow the specification in terms of LaTeX color specification.



                  documentclass{article}
                  usepackage{xcolor,stackengine,colorinfo}
                  input binhex.tex
                  newcommandpalbox[1]{{sffamilyfboxsep=5ptrelaxfboxrule=1ptrelaxfootnotesize%
                  fcolorbox{gray!50}{gray!10}{%
                  stackengine{8pt}{%
                  colorbox[RGB]{#1}{rule{60pt}{0pt}rule{0pt}{60pt}}%
                  }{%
                  color{black!60}stackengine{12pt}{intohex{#1}}{saycolors{#1}}{U}{l}{F}{F}{S}%
                  }{U}{l}{F}{F}{S}%
                  }%
                  }}
                  newcommandsaycolors[1]{saycolorsaux#1relax}
                  defsaycolorsaux#1 #2 #3relax{R:#1 G:#2 B:#3}
                  newcommandintohex[1]{#intohexaux#1relax}
                  defintohexaux#1 #2 #3relax{twodigithex{#1}twodigithex{#2}twodigithex{#3}}
                  newcommandtwodigithex[1]{ifnum#1<16relax0fiMakeLowercase{hex{#1}}}

                  newlengthrcomp
                  newlengthgcomp
                  newlengthbcomp
                  newcommandcolcomponents[1]{expandaftercolcomponentsaux#1relax}
                  defcolcomponentsaux#1,#2,#3relax{%
                  setlengthrcomp{dimexpr255dimexpr#1ptrelax+.5ptrelax}%
                  setlengthgcomp{dimexpr255dimexpr#2ptrelax+.5ptrelax}%
                  setlengthbcomp{dimexpr255dimexpr#3ptrelax+.5ptrelax}%
                  }
                  newcommandtruncatergb[1]{expandaftertruncatergbaux#1relax}
                  deftruncatergbaux#1.#2relax{#1}
                  newcommandxpalbox[1]{%
                  colorlet{mycolor}{#1}%
                  setbox0=hbox{colorInfo{mycolor}}%
                  colcomponents{colorValue}%
                  edefRcomp{truncatergb{thercomp}}%
                  edefGcomp{truncatergb{thegcomp}}%
                  edefBcomp{truncatergb{thebcomp}}%
                  edeftmp{expandafterexpandafterexpandafterRcomp
                  expandafterexpandafterexpandafterspace
                  expandafterGcompexpandafterspaceBcomp}%
                  expandafterpalboxexpandafter{tmp} = colorbox{mycolor}{#1}%
                  par
                  }
                  begin{document}
                  xpalbox{blue!40!red!25}
                  xpalbox{blue!60!green!45}
                  end{document}


                  enter image description here







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited 1 hour ago

























                  answered 1 hour ago









                  Steven B. SegletesSteven B. Segletes

                  161k9205416




                  161k9205416






























                      draft saved

                      draft discarded




















































                      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.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483441%2ftikz-convert-color-string-to-hex-value%23new-answer', 'question_page');
                      }
                      );

                      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







                      Popular posts from this blog

                      Why do type traits not work with types in namespace scope?What are POD types in C++?Why can templates only be...

                      Will tsunami waves travel forever if there was no land?Why do tsunami waves begin with the water flowing away...

                      Should I use Docker or LXD?How to cache (more) data on SSD/RAM to avoid spin up?Unable to get Windows File...