Spaces:
Running
on
Zero
Running
on
Zero
Create tags.py
Browse files
tags.py
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# tags.py
|
| 2 |
+
|
| 3 |
+
# First set of tags
|
| 4 |
+
tag_options_1 = {
|
| 5 |
+
"Fantasy": "fantasy",
|
| 6 |
+
"Sci-Fi": "sci-fi",
|
| 7 |
+
"Realistic": "realistic",
|
| 8 |
+
"Cyberpunk": "cyberpunk",
|
| 9 |
+
"Noir": "noir",
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
# Second set of tags
|
| 13 |
+
tag_options_2 = {
|
| 14 |
+
"Vibrant Colors": "vibrant colors",
|
| 15 |
+
"Dark Theme": "dark theme",
|
| 16 |
+
"Minimalist": "minimalist",
|
| 17 |
+
"Photorealistic": "photorealistic",
|
| 18 |
+
"Abstract": "abstract",
|
| 19 |
+
}
|