You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tde-i18n/tde-i18n-it/data/tdeedu/kturtle/colorisfondo.logo

33 lines
480 B

# dimostrazione dei vari colori
coloresfondo 255,255,255
nascondi
ripeti 5 [
per c = 0 finoa 255 [
coloresfondo 255-c,255,255
]
per c = 0 finoa 255 [
coloresfondo 0,255-c,255
]
per c = 0 finoa 255 [
coloresfondo c,0,255
]
per c = 0 finoa 255 [
coloresfondo 255,c,255-c
]
per c = 0 finoa 255 [
coloresfondo 255,255-c,0
]
per c = 0 finoa 255 [
coloresfondo 255,0,c
]
per c = 0 finoa 255 [
coloresfondo 255-c,0,255-c
]
per c = 0 finoa 255 [
coloresfondo c,c,c
]
]