Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Bright Circle Colors
#1
I know most of you have seen these colors before, as I have, but for some reason I haven't used them much myself yet. Today I found some color code from someone's post on FB and tried them out, using globe depth. Smile 
Press the Space Bar to make different ones or Esc to quit.

Code: (Select All)

'Bright Circle Colors

Screen _NewImage(800, 600, 32)
Randomize Timer
_Title "Press the Space Bar to make different ones or Esc to quit."
Do
    For circles = 1 To 10
        x = Rnd * 800: y = Rnd * 600: sz = .1
        For s = sz + Rnd * 200 To sz Step -.1
            Circle (x, y), s, _RGB32(&H8B, &H5C - s, &HF6)
        Next s

        x = Rnd * 800: y = Rnd * 600: sz = .1
        For s = sz + Rnd * 200 To sz Step -.1
            Circle (x, y), s, _RGB32(&HEC, &H48 - s, &H99)
        Next s

        x = Rnd * 800: y = Rnd * 600: sz = .1
        For s = sz + Rnd * 200 To sz Step -.1
            Circle (x, y), s, _RGB32(&H10, &HB9 - s, &H81)
        Next s

        x = Rnd * 800: y = Rnd * 600: sz = .1
        For s = sz + Rnd * 200 To sz Step -.1
            Circle (x, y), s, _RGB32(&H60, &HA5 - s, &HFA)
        Next s
    Next circles
    Do: a$ = InKey$
        If a$ = Chr$(27) Then End
    Loop Until a$ = " "
    Cls
Loop
Reply


Messages In This Thread
Bright Circle Colors - by SierraKen - 08-12-2025, 09:51 PM
RE: Bright Circle Colors - by DANILIN - 08-21-2025, 02:50 PM
RE: Bright Circle Colors - by bplus - 08-22-2025, 01:42 PM
RE: Bright Circle Colors - by SierraKen - 08-23-2025, 03:52 AM
RE: Bright Circle Colors - by DANILIN - 08-23-2025, 03:33 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Converting 24-Bit images to Paletted Images (2-colors to 256-colors) The Joyful Programmer 13 1,397 02-10-2026, 11:22 AM
Last Post: Unseen Machine
  The Curve statement, an improved Circle 2112 6 674 11-02-2025, 09:45 PM
Last Post: bplus
  Draw that Circle James D Jarvis 17 3,274 08-28-2022, 06:29 AM
Last Post: justsomeguy
  Rotating Circle CharlieJV 0 517 08-06-2022, 02:56 AM
Last Post: CharlieJV

Forum Jump:


Users browsing this thread: 1 Guest(s)