HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-172-31-4-197 6.8.0-1036-aws #38~22.04.1-Ubuntu SMP Fri Aug 22 15:44:33 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //lib/node_modules/forever/node_modules/colors/example.html
<!DOCTYPE HTML>
<html lang="en-us">
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <title>Colors Example</title>
    <script src="colors.js"></script>
  </head>
  <body>
    <script>

    var test = colors.red("hopefully colorless output");

    document.write('Rainbows are fun!'.rainbow + '<br/>');
    document.write('So '.italic + 'are'.underline + ' styles! '.bold + 'inverse'.inverse); // styles not widely supported
    document.write('Chains are also cool.'.bold.italic.underline.red); // styles not widely supported
    //document.write('zalgo time!'.zalgo);
    document.write(test.stripColors);
    document.write("a".grey + " b".black);

    document.write("Zebras are so fun!".zebra);

    document.write(colors.rainbow('Rainbows are fun!'));
    document.write("This is " + "not".strikethrough + " fun.");

    document.write(colors.italic('So ') + colors.underline('are') + colors.bold(' styles! ') + colors.inverse('inverse')); // styles not widely supported
    document.write(colors.bold(colors.italic(colors.underline(colors.red('Chains are also cool.'))))); // styles not widely supported
    //document.write(colors.zalgo('zalgo time!'));
    document.write(colors.stripColors(test));
    document.write(colors.grey("a") + colors.black(" b"));

    colors.addSequencer("america", function(letter, i, exploded) {
      if(letter === " ") return letter;
      switch(i%3) {
        case 0: return letter.red;
        case 1: return letter.white;
        case 2: return letter.blue;
      }
    });

    colors.addSequencer("random", (function() {
      var available = ['bold', 'underline', 'italic', 'inverse', 'grey', 'yellow', 'red', 'green', 'blue', 'white', 'cyan', 'magenta'];

      return function(letter, i, exploded) {
        return letter === " " ? letter : letter[available[Math.round(Math.random() * (available.length - 1))]];
      };
    })());

    document.write("AMERICA! F--K YEAH!".america);
    document.write("So apparently I've been to Mars, with all the little green men. But you know, I don't recall.".random);

    //
    // Custom themes
    //

    colors.setTheme({
      silly: 'rainbow',
      input: 'grey',
      verbose: 'cyan',
      prompt: 'grey',
      info: 'green',
      data: 'grey',
      help: 'cyan',
      warn: 'yellow',
      debug: 'blue',
      error: 'red'
    });

    // outputs red text
    document.write("this is an error".error);

    // outputs yellow text
    document.write("this is a warning".warn);

    </script>
  </body>
</html>