Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -----cRGB------
- --by elektrobom1
- --a super simple API
- --for converting color API into
- --RGB 255x values
- local function conv(ins,mode)
- if mode == nil then
- mode = 255
- end
- local r,g,b = term.getPaletteColor(ins)
- return r*mode,g*mode,b*mode
- end
- return {conv = conv}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement