Color codes in API

That’s awesome, @Alex_Laughnan_Asana , thanks for letting us know :slight_smile:

1 Like

Here’s latest palette


.green {
color: rgb(133, 215, 162);
}

.red {
color: rgb(253, 118, 123);
}

.orange {
color: rgb(248, 143, 79);
}

.yellow-orange {
color: rgb(236, 172, 34);
}

.yellow {
color: rgb(231, 196, 43);
}

.yellow-green {
color: rgb(174, 210, 104);
}

.blue-green {
color: rgb(94, 197, 220);
}

.aqua {
color: rgb(116, 215, 202);
}

.blue {
color: rgb(107, 159, 246);
}

.indigo {
color: rgb(173, 158, 255);
}

.purple {
color: rgb(217, 142, 234);
}

.magenta {
color: rgb(245, 151, 225);
}

.hot-pink {
color: rgb(251, 131, 191);
}

.pink {
color: rgb(255, 153, 177);
}

.cool-gray {
color: rgb(160, 160, 160);
}

.none {
color: transparent;
}
2 Likes