Update app.py
Browse files
app.py
CHANGED
@@ -93,12 +93,19 @@ COMPOSITION_PARAMS = {
|
|
93 |
"Industriel": "industrial atmosphere, raw and urban mood",
|
94 |
"Naturel": "natural atmosphere, organic and earthy mood"
|
95 |
},
|
96 |
-
# Palette
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
}
|
103 |
|
104 |
class ImageGenerator:
|
|
|
93 |
"Industriel": "industrial atmosphere, raw and urban mood",
|
94 |
"Naturel": "natural atmosphere, organic and earthy mood"
|
95 |
},
|
96 |
+
# Define the Palette options here
|
97 |
+
'Palette': {
|
98 |
+
'Monochrome': 'monochromatic color scheme',
|
99 |
+
'Contrasté': 'high contrast color palette',
|
100 |
+
'Pastel': 'soft pastel color palette',
|
101 |
+
'Terre': 'earthy color palette',
|
102 |
+
'Néon': 'neon color palette',
|
103 |
+
'Complémentaire': 'complementary color scheme',
|
104 |
+
'Analogique': 'analogous color scheme',
|
105 |
+
'Triadique': 'triadic color scheme',
|
106 |
+
'Tétradique': 'tetradic color scheme',
|
107 |
+
'Tons rompus': 'muted tones color palette'
|
108 |
+
}
|
109 |
}
|
110 |
|
111 |
class ImageGenerator:
|