Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v1.0.115 Home All releases olderv1.0.114 v1.0.116newer
Claude Code v1.0.115

Rainbow Color Arrays and Helper Functions

What: New infrastructure for cycling through rainbow colors

How to use: The system now includes:

  • Cj9 array at line 365972: Contains the seven rainbow color names for cycling
  • Uj9 array at line 365981: Contains the seven rainbow shimmer color names
  • m61() function at line 365993: Cycles through rainbow colors by index
  • Ew1() function at line 365990: Checks if a string matches "ultrathink" (case-insensitive)

Details:

  • The m61(index, useShimmer) function takes an index and optional shimmer flag, returning the appropriate rainbow color name
  • Uses modulo arithmetic to cycle through colors: Q[A % Q.length]
  • Evidence: m61() at line 365993, Ew1() at line 365990, Cj9 at line 365972, Uj9 at line 365981

See this entry in the whole of v1.0.115 →