panelforge commited on
Commit
87bcb04
·
verified ·
1 Parent(s): 03c18e7

Create tags.py

Browse files
Files changed (1) hide show
  1. tags.py +19 -0
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
+ }