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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T10:43:20+00:00 2026-05-27T10:43:20+00:00

Does anyone know a way to change color codes to color names? I have

  • 0

Does anyone know a way to change color codes to color names? I have an XML with color codes:
I need: #FFFFFF to replace to White and #000000 to Black etc.

If you know a script, batch, C# program or anyway to this it ill be greatly appreciated

Thanks 🙂

  • 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-27T10:43:20+00:00Added an answer on May 27, 2026 at 10:43 am

    Here is a method which will retrieve the name or the RGB value if none is found:

    static Color[] colors = typeof(Color)
        .GetProperties(BindingFlags.Public | BindingFlags.Static)
        .Where(pi => pi.CanRead && pi.PropertyType == typeof(Color))
        .Select(pi => (Color)pi.GetValue(null, null))
        .ToArray();
    
    static IEnumerable<string> FindColorNames(string htmlColor)
    {
        // like "#RRGGBB" or "#AARRGGBB" or "Red" or "red"
        var color = ColorTranslator.FromHtml(htmlColor);
        return colors.Where(cc => cc.R == color.R
                               && cc.G == color.G
                               && cc.B == color.B
                               && cc.A == color.A)
                     .Select(cc => cc.Name);
    }
    
    static string FindColorName(string htmlColor)
    {
        return FindColorNames(htmlColor).FirstOrDefault() ?? htmlColor;
    }
    
    // #FFFFFF: White
    // #000000: Black
    // #333333: 333333
    // #FF00FF: Fuchsia (Magenta also matches)
    

    An update which uses a nicer search mode:

    static Dictionary<int, string[]> colors = static Color[] colors = typeof(Color)
        .GetProperties(BindingFlags.Public | BindingFlags.Static)
        .Where(pi => pi.CanRead && pi.PropertyType == typeof(Color))
        .Select(pi => (Color)pi.GetValue(null, null))
        .GroupBy(cc => cc.ToArgb())
        .ToDictionary(gg => gg.Key, gg.Select(cc => cc.Name).ToArray());
    
    static IEnumerable<string> FindColorNames(string htmlColor)
    {
        var color = ColorTranslator.FromHtml(htmlColor);
        string[] names;
        if (!colors.TryGetValue(color.ToArgb(), out names))
        {
            return Enumerable.Empty<string>();
        }
    
        return names;
    }
    
    static string FindColorName(string htmlColor)
    {
        return FindColorNames.FirstOrDefault() ?? htmlColor;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know of any way to overcome NotSupportedException? I have a method against
Does anyone know a way to have all the rows of one column of
does anyone know of a way I can change the text label for on
does anyone know of way I can change the existing display name publicly as
Does anyone know how to use preg_replace in a way to change the following
Does anyone know of a way to change the height of a Page Header
Does anyone know of an existing way to change the order of an existing
Does anyone know a way to register a persistent UDF in SQLite 3 (using
Does anyone know a way to get the mean amplitude of a .wav file
Does anyone know a way to get Firefox to crop the corners if the

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.