-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathchecklist1.txt
More file actions
28 lines (22 loc) · 1.1 KB
/
checklist1.txt
File metadata and controls
28 lines (22 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--------------------------------------
- Python Lesson 2: FUNctions & Color -
--------------------------------------
Due to the changing seasons and shedding skin, the world of Snake looks greyer than it used to.
Your mission is to figure out how to change colors in our game and to change this boring, grey
world into something awesome.
As you experiment with colors, make sure to answer the questions in this file.
1) What does an RGB triple with low values like (20, 20, 20) look like? What about a triple with high values
like (240, 240, 240)?
2) As you experiment with changing the color of the snake, keep track of the RGB values
that you discovered below. There are some colors that you should try to discover.
There are many ways to represent a color (for example, there are many shades of orange),
so record at least one RGB value. If you discover some cool colors, add them below!
-- Example: GREY: (60, 60, 60)
RED:
GREEN:
BLUE:
YELLOW:
PURPLE:
CYAN:
3) How can we change the color of a block that already exists (like pieces of the snake)?
List how you modify the color of an existing block.