Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8288661
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T12:19:21+00:00 2026-06-08T12:19:21+00:00

environment: JavaScript object.style.color returns something like rgb(255,0,0) Is there another return format, like hex?

  • 0

environment: JavaScript
object.style.color returns something like
"rgb(255,0,0)"
Is there another return format, like hex?

var colorvariable = document.getElementById('text1').style.color
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T12:19:22+00:00Added an answer on June 8, 2026 at 12:19 pm

    If you set:

    document.getElementById('text1').style.color = '#000';
    

    It will return #000.

    However, if you set:

    document.getElementById('text1').style.color = 'rgb(0,0,0)';
    

    It will return rgb(0,0,0), so this returned value depends on the value that was set.

    You can use getComputedStyle to get the color in RGB format and then convert to HEX. See this code:

    var hexChars = '0123456789ABCDEF';
    var rgb = getComputedStyle(document.body).color.match(/\d+/g);
    var r = parseInt(rgb[0]).toString(16);
    var g = parseInt(rgb[1]).toString(16);
    var b = parseInt(rgb[2]).toString(16);
    var hex = '#' + r + g + b;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am looking for a headless testing environment for javascript... something like ZombieJS ,
When I run javascript script file in windows command line environment, and there is
I'm working on a JavaScript object and there are a lot of variables declared
I wonder if there is a 'local runtime environment' for hosting Javascript code, that's
How can I create an environment in client-side javascript where any code related to
ENVIRONMENT: C# I have a table of equivalent values, like this: CHEVR = CHEVROLET
I've inherited a project with some nasty JavaScript that depends on hard coded object
In .net , there are the static properties DateTime.MinDate, and DateTime.MaxDate that conveniently return
I'm trying to write some javascript in an environment where square brackets are used
In my pre-ASP.NET development environment, there was a near-universal best practice: * NEVER use

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.