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 6693757
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:01:22+00:00 2026-05-26T06:01:22+00:00

How can i convert this hexa code = #2088C1 into colour name Like Blue

  • 0

How can i convert this hexa code = #2088C1 into colour name Like Blue or Red

My aim is i want to get the colour name like “blue” for the given hexa code

I have tried the below code but it was not giving any colour name ..

System.Drawing.Color col = System.Drawing.ColorTranslator.FromHtml("#2088C1");

Color col = ColorConverter.ConvertFromString("#2088C1") as Color;

but it does not giving the colour name like this “aquablue”

I am using winforms applications with c#

  • 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-05-26T06:01:23+00:00Added an answer on May 26, 2026 at 6:01 am

    I stumbled upon a german site that does exactly what you want:

    /// <summary>
    /// Gets the System.Drawing.Color object from hex string.
    /// </summary>
    /// <param name="hexString">The hex string.</param>
    /// <returns></returns>
    private System.Drawing.Color GetSystemDrawingColorFromHexString(string hexString)
    {
        if (!System.Text.RegularExpressions.Regex.IsMatch(hexString, @"[#]([0-9]|[a-f]|[A-F]){6}\b"))
            throw new ArgumentException();
        int red = int.Parse(hexString.Substring(1, 2), NumberStyles.HexNumber);
        int green = int.Parse(hexString.Substring(3, 2), NumberStyles.HexNumber);
        int blue = int.Parse(hexString.Substring(5, 2), NumberStyles.HexNumber);
        return Color.FromArgb(red, green, blue);
    }
    

    To get the color name you can use it as follows to get the KnownColor:

    private KnownColor GetColor(string colorCode)
    {
        Color color = GetSystemDrawingColorFromHexString(colorCode);
        return color.GetKnownColor();
    }
    

    However, System.Color.GetKnownColor seems to be removed in newer versions of .NET

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can i convert this VBNet code into C#? ( ByteToImage is a User
how can i convert this into an array? if someone searches for lo he
You can convert a negative number to positive like this: int myInt = System.Math.Abs(-5);
Can somebody advise me what this code does and how can I convert it
How can i convert int64_t to NSInteger in Objective-C ? This method returns into
How I can convert this math formula to a vectorized MATLAB code? a(i) =
How I can convert this math formula to a vectorized MATLAB code? a(i) =
How I can convert this code to LINQ? var TcData = new List<double>(); for(int
I'm trying to convert this adaptive bayesian rating formula into PHP code: see here
How can i convert this to a decimal in SQL? Below is the equation

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.