<- [[crpl:crplreference|CRPL reference]] <- [[crpl:crplreference#text_commands|Text Commands]] ===== SetTextColor ===== ^Arguments^Result^Notation^ |Red Green Blue Alpha| |''n1 n2 n3 n4 --''| === Description === Sets the color for the text from [[crpl:docs:SetText]] to be displayed as. The four arguments range from 0 to 255. === Examples === # Set text to display as Yellow and 50% transparent: "Hello Creeper World" SetText 255 255 0 128 SetTextColor # Warp notation SetText("Hello Creeper World") SetTextColor(255 255 0 128)