They’re this concept that you can separate deploy from release by making the code conditional. Open Feature is the vendor agnostic version of it.
def get_colors()
colors = ['red', 'blue']
if openfeature.get_boolean('green_enabled', False):
colors.append('green')
return colors