Guest User

Untitled

a guest
Oct 22nd, 2017
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.81 KB | None | 0 0
  1. +------------------------------------------------------------------------+ +-------------+
  2. | Name | Identifier | RGB | HEX | Decimal | | Best Option |
  3. |------------------------------------------------------------------------| |-------------|
  4. | "BLACK" | [0] | [0,0,0] | 0x000000 | 0 | | 0 |
  5. | "SILVER" | [1] | [192,192,192] | 0xc0c0c0 | 12632256 | | [1] |
  6. | "GRAY"/"GREY" | [2] | [128,128,128] | 0x808080 | 8421504 | | [2] |
  7. | "WHITE" | [3] | [255,255,255] | 0xffffff | 16777215 | | [3] |
  8. | "MAROON" | [4] | [128,0,0] | 0x800000 | 8388608 | | [4] |
  9. | "RED" | [5] | [255,0,0] | 0xff0000 | 16711680 | | [5] |
  10. | "PURPLE" | [6] | [128,0,128] | 0x800080 | 8388736 | | [6] |
  11. | "FUCHSIA"/"MAGENTA" | [7] | [255,0,255] | 0xff00ff | 16711935 | | [7] |
  12. | "GREEN" | [8] | [0,128,0] | 0x008000 | 32768 | | [8] |
  13. | "LIME" | [9] | [0,255,0] | 0x00ff00 | 65280 | | [9] |
  14. | "OLIVE" | [10] | [128,128,0] | 0x808000 | 8421376 | | [10] |
  15. | "YELLOW" | [11] | [255,255,0] | 0xffff00 | 16776960 | | [11] |
  16. | "NAVY" | [12] | [0,0,128] | 0x000080 | 128 | | 128 |
  17. | "BLUE" | [13] | [0,0,255] | 0x0000ff | 255 | | 255 |
  18. | "TEAL" | [14] | [0,128,128] | 0x008080 | 32896 | | [14] |
  19. | "AQUA" | [15] | [0,255,255] | 0x00ffff | 65535 | | [15] |
  20. | "PINK" | [16] | [255,192,203] | 0xffc0cb | 16761035 | | [16] |
  21. | "TOMATO" | [17] | [255,99,71] | 0xff6347 | 16737095 | | [17] |
  22. | "ORANGE" | [18] | [255,165,0] | 0xffa500 | 16753920 | | [18] |
  23. | "GOLD" | [19] | [255,215,0] | 0xffd700 | 16766720 | | [19] |
  24. | "VIOLET" | [20] | [148,0,211] | 0x9400d3 | 9699539 | | [20] |
  25. | "SKYBLUE" | [21] | [135,206,235] | 0x87ceeb | 8900331 | | [21] |
  26. | "CHOCOLATE" | [22] | [210,105,30] | 0xd2691e | 13789470 | | [22] |
  27. | "BROWN" | [23] | [165,42,42] | 0xa52a2a | 10824234 | | [23] |
  28. | "INVISIBLE" | [24] | N/A | N/A | N/A | | [24] |
  29. +------------------------------------------------------------------------+ +-------------+
  30.  
  31. +-----------------------------------------------+
  32. | Full Command | Short Command | Bytes Saved |
  33. |-----------------------------------------------|
  34. | forward 10 | fd 10 | 5 |
  35. | back 10 | bk 10 | 2 |
  36. | left 90 | lt 90 | 2 |
  37. | right 90 | rt 90 | 3 |
  38. | penup | pu | 3 |
  39. | pendown | pd | 5 |
  40. | position 0 | pos 0 | 5 |
  41. | heading 0 | seth 0 | 3 |
  42. | hideturtle | ht | 8 |
  43. | showturtle | st | 8 |
  44. | clearscreen | cs | 9 |
  45. | pensize 10 | ps 10 | 5 |
  46. | pencolor 0 | pc 0 | 6 |
  47. | fillcolor 0 | fc 0 | 7 |
  48. | picture [ ... ] | pic [ ... ] | 4 |
  49. +-----------------------------------------------+
  50.  
  51. x = int random 10 ; 17 bytes
  52. x = int(ps any) ; 15 bytes
  53.  
  54. x = random 10 ; 13 bytes
  55. x = (ps any) ; 12 bytes
  56.  
  57. pensize random 10 ; 17 bytes
  58. ps random 10 ; 12 bytes
  59. ps any ; 6 bytes
Add Comment
Please, Sign In to add comment