Equityone commited on
Commit
e7d824e
·
verified ·
1 Parent(s): 07687d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -6
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 remains unchanged
97
- # Define your palette options here as needed.
98
- # Example:
99
- # Palette: {
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: