mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 19:28:58 +07:00
GitOrigin-RevId: 2b14686ea8c691627c9a8155f75a7c6727a48bf3
5 lines
117 B
Python
5 lines
117 B
Python
def is_primary_color(color):
|
|
return color in ("red",
|
|
"blue",
|
|
"yellow")
|