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

  • Home
  • SEARCH
  • 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 7977905
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T09:20:37+00:00 2026-06-04T09:20:37+00:00

I am using this code to generate random colors (which is working fine): {

  • 0

I am using this code to generate random colors (which is working fine):

  {
       $r = rand(128,255); 
       $g = rand(128,255); 
       $b = rand(128,255); 
       $color = dechex($r) . dechex($g) . dechex($b);
       return "#".$color;
  }

I am just wondering if is there a way/combination to generate only the Bright colors?

Thank you

  • 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-04T09:20:39+00:00Added an answer on June 4, 2026 at 9:20 am

    Your original code doesn’t work as you’d expect – if a low number is generated you might get #1ffff (1 being the low red value) – which is invalid. It is much more stable to use this:

    echo "rgb(".$r.",".$g.",".$b.")";
    

    Since rgb(123,45,67) is perfectly valid colour specification.

    Along similar lines, you can generate random numbers for hsl:

    echo "hsl(".rand(0,359).",100%,50%)";
    

    This will generate fully saturated, normal lightness colours of any hue. However, note that only recent browers support HSL so you may be better off coerting to RGB if browser support is a concern.

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

Sidebar

Related Questions

I am using this code to generate random text : from collections import defaultdict,
I am using this line of code to generate a random list of integers:
I am using this code to using a Random generator to generate random positions.
I must generate a random number using boost libraries, I use this code: boost::mt19937
I've been using this code to generate a random number with js: var max
I am using this code to generate a random permutation of a vector using
This is the code that I'm using to generate a DH keypair: KeyPairGenerator keyGen
I wanted to generate a list view using below code. But after running this
I'm using the following code to generate a random string: <?php function random_string( )
I am using Python to generate some data and have some code like this

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.