Code snippets: Object recognition
Change the default color of the arcs of a tag
1
2
3
4
5
6
7
8
9
// default arc color for clickable items
.or__tag__button .or__tag__button__arc {
fill: var(--color1);
}
// default color for non-clickable arcs
.or__tag__button.or__tag__button--empty .or__tag__button__arc {
fill: var(--color2);
}