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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T04:39:37+00:00 2026-05-28T04:39:37+00:00

In my PHP (v5.2.17) script, I want to select a unique colour for the

  • 0

In my PHP (v5.2.17) script, I want to select a unique colour for the current user’s entries, based on their IP address. I don’t want to map the colour values from the hex codes, because I also want to fade the colours of each entry over time. The colour must always have one of the RGB values set to zero (it’s like a set of bright, primary colours).

Is there a clever mathematical solution to do this?

I’d greatly appreciate if any math genuises reading this would share some insights. 🙂

  • 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-28T04:39:38+00:00Added an answer on May 28, 2026 at 4:39 am

    Are you really limiting yourself to just six “base” colors?

    255 255 0
    255 0 255
    0 255 255
    
    0 0 255
    0 255 0
    255 0 0
    

    I presume you’re going to apply a linear function to these colors to try to fade them out. This won’t necessarily look as good as you think it might — RGB as a representation isn’t very linear. You can cheaply approximate a better “linear” representation by using an HSV or HSL representation instead. They surely aren’t perfect but it will feel a little more natural than RGB.

    As for mapping the IP address to a color, you could store these color combinations in an array and pick among the six elements by using a simple hash function. Something like this might be sufficient:

    b1, b2, b3, b4 = <split the four bytes from an IP address>
    index = (b1 * 17 + (b2 * 17 + (b3 * 17 + b4))) % 6
    

    (I just picked the multiplier 17 out of the air — its binary representation is 10001, which means the bits of each byte in the address get “smeared” over each other. There might be better values. Once you’ve gotten a few colors selected and a handful of IP addresses you can try changing the multiplier to e.g. 21 or 53 and see what makes most sense.)

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

Sidebar

Related Questions

I want a PHP script which allows you to ping an IP address and
In a PHP script I want to get just the URL of the top
I have a html_headers.inc.php script that I want to include in every script on
I want a PHP script that adds some data at the end of a
I want to have a PHP script send a XML formatted string to another
I want to execute a php-script from php that will use different constants and
I want to write a php script that keeps the apache_log file open and
I want to run a php script from the command line that is always
I want to write a php script to compare rows from the database and
I have a php script that is running in CLI and I want to

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.