Clear[opa]
ListaCoresOPO18[opa_] := {
RGBColor[31/255, 120/255, 180/255, opa],
RGBColor[51/255, 160/255, 44/255, opa],
RGBColor[227/255, 26/255, 28/255, opa],
RGBColor[255/255, 127/255, 0/255, opa],
RGBColor[106/255, 61/255, 154/255, opa],
RGBColor[177/255, 89/255, 40/255, opa]
};
ListaCoresOPO18[0.95]
Asked
Active
Viewed 50 times
-1
-
@rhermans The = is the typical [line]= – Mika Ike Jul 15 '18 at 08:47
-
1OK the problem was lingering definitions. To prevent those please read here. – rhermans Jul 15 '18 at 08:52
1 Answers
3
SOLVED: The problem was that I should have use the name ListaCoresOPO18 before, SO.... after coding "Clear[ListaCoresOPO18];" in the first lines That was solved
Mika Ike
- 3,241
- 1
- 23
- 38

