Reputation: 1094
orangeWith80Transp = color.new(color.orange, 80)
How do I extract the color without transparency from orangeWith80Transp
?
pureOrange = ?
Upvotes: 0
Views: 114
Reputation: 3833
pureOrange = color.new(color.orange, 0)
or
pureOrange = color.new(orangeWith80Transp, 0)
Upvotes: 2