File size: 15,374 Bytes
273b8b1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
{
    "flat_and_minimal": {
      "description": "扁平与极简:最清晰、最现代、最通用的信息图风格,专注于形状和颜色的直接传达。",
      "keywords": [
        "flat_solid_icon",
        "minimal_shape",
        "solid_color_fill",
        "negative_space_icon",
        "modern_minimal_form",
        "basic_geometric_shape",
        "essential_silhouette",
        "flat_ui_style",
        "simplified_form",
        "color_block_icon",
        "app_style_icon",
        "wayfinding_style",
        "flat_badge",
        "corporate_flat",
        "sharp_edge_vector"
      ],
      "topics": [
        "business information",
        "economy",
        "products and services",
        "online and remote learning",
        "school",
        "sustainability",
        "public health",
        "government policy",
        "technology and engineering",
        "demographics",
        "social condition",
        "welfare"
      ]
    },
    "outline_and_line_art": {
      "description": "描边与线条:使用线条而非填充,营造出更轻盈、更技术感或更优雅的视觉感受。",
      "keywords": [
        "monoline_icon",
        "outline_glyph",
        "thin_stroke_style",
        "bold_outline_shape",
        "line_art_pictogram",
        "continuous_line_icon",
        "minimal_stroke_design",
        "technical_drawing_style",
        "wireframe_style_icon",
        "stroked_vector_shape",
        "rounded_outline_icon",
        "sharp_edge_line_art",
        "duoline_style_icon",
        "minimal_line_icon",
        "stroke_only_glyph"
      ],
      "topics": [
        "technology and engineering",
        "scientific research",
        "biomedical science",
        "mathematics",
        "business information",
        "products and services",
        "health facility",
        "medical profession",
        "scientific institution",
        "government policy",
        "architecture"
      ]
    },
    "corporate_and_professional": {
      "description": "商务与专业:传达信任、精确和可靠性,适用于商业报告、金融数据和技术文档。",
      "keywords": [
        "corporate_clean_icon",
        "professional_minimal",
        "business_infographic_style",
        "data_viz_icon_style",
        "tech_corporate_look",
        "corporate_soft_gradient",
        "formal_vector_shape",
        "corporate_duotone",
        "abstract_corporate_shape",
        "clean_tech_icon",
        "startup_style_icon",
        "corporate_badge",
        "enterprise_icon_style",
        "presentation_icon_style"
      ],
      "topics": [
        "business enterprise",
        "business information",
        "economy",
        "market and exchange",
        "products and services",
        "employment",
        "employment legislation",
        "labour market",
        "labour relations",
        "retirement",
        "government",
        "government policy",
        "law",
        "health insurance",
        "private health care",
        "sport industry",
        "sports management and ownership"
      ]
    },
    "hand_drawn_and_organic": {
      "description": "手绘与有机:具有人情味、创意和不完美感,适用于非正式、创意或个性化主题。",
      "keywords": [
        "hand_drawn_icon",
        "sketchy_style_pictogram",
        "doodle_icon_style",
        "organic_shape_fill",
        "imperfect_lines",
        "chalkboard_style_icon",
        "crayon_texture_fill",
        "pencil_sketch_icon",
        "hand_drawn_outline",
        "crafty_paper_cut_style",
        "whimsical_hand_drawn",
        "marker_stroke_style",
        "ink_sketch_glyph",
        "rustic_hatch_fill",
        "storybook_icon_style",
        "organic_blob_shape",
        "playful_hand_drawn"
      ],
      "topics": [
        "arts and entertainment",
        "culture",
        "leisure",
        "lifestyle",
        "wellness",
        "social learning",
        "students",
        "family",
        "communities",
        "social problem",
        "non-governmental organisation (NGO)",
        "conservation",
        "parents group",
        "values"
      ]
    },
    "playful_and_cute": {
      "description": "趣味与可爱:有趣、活泼、引人入胜,非常适合教育、社交媒体或轻松的主题。",
      "keywords": [
        "playful_rounded_shape",
        "cute_cartoon_icon",
        "kawaii_style_glyph",
        "kid_friendly_vector",
        "bouncy_form",
        "fun_mascot_style",
        "playful_doodle",
        "toy_like_icon",
        "playful_corporate_lite",
        "educational_playful",
        "soft_bubble_shape",
        "childlike_drawing_style",
        "sticker_style_icon",
        "bubbly_pictogram",
        "friendly_cartoon_icon",
        "playful_badge",
        "cute_minimal",
        "rounded_corner_style"
      ],
      "topics": [
        "social learning",
        "school",
        "students",
        "parents group",
        "family",
        "leisure",
        "lifestyle",
        "birthday",
        "anniversary",
        "celebrity",
        "arts and entertainment",
        "products and services",
        "religious festival and holiday",
        "wellness"
      ]
    },
    "tech_and_futuristic": {
      "description": "科技与未来:现代、前卫、动感,暗示技术、数据、创新和科幻主题。",
      "keywords": [
        "tech_glow_outline",
        "neon_line_art_icon",
        "futuristic_hud_style",
        "sci_fi_ui_glyph",
        "data_stream_lines",
        "circuit_board_pattern_fill",
        "tech_minimal_glyph",
        "digital_glitch_effect_icon",
        "glossy_tech_icon",
        "cyberpunk_style_pictogram",
        "glowing_edge_effect",
        "holographic_fill_style",
        "tech_badge",
        "dark_mode_ui_icon",
        "gradient_line_art",
        "plexus_style_lines",
        "vector_circuit_icon",
        "modern_tech_glyph",
        "data_flow_abstract_shape",
        "digital_network_icon"
      ],
      "topics": [
        "technology and engineering",
        "cyber warfare",
        "scientific research",
        "biomedical science",
        "natural science",
        "online and remote learning",
        "business information",
        "market and exchange",
        "products and services",
        "mass media",
        "scientific institution"
      ]
    },
    "retro_and_vintage": {
      "description": "复古与怀旧:唤起过去的时代感,适用于历史数据、时间线或营造特定的怀旧氛围。",
      "keywords": [
        "retro_pixel_art_icon",
        "8_bit_glyph_style",
        "vintage_badge_design",
        "retro_cartoon_style",
        "mid_century_modern_icon",
        "70s_groovy_style_vector",
        "50s_atomic_era_shape",
        "vintage_stamp_effect",
        "retro_line_art_icon",
        "woodcut_style_icon",
        "engraving_hatch_fill",
        "retro_tech_look",
        "vintage_label_style",
        "retro_halftone_fill",
        "distressed_texture_overlay",
        "retro_signage_style",
        "vintage_script_accent"
      ],
      "topics": [
        "culture",
        "arts and entertainment",
        "mass media",
        "post-war reconstruction",
        "social condition",
        "leisure",
        "lifestyle",
        "products and services",
        "history"
      ]
    },
    "isometric_and_3d": {
      "description": "等距与3D:增加深度和空间感,非常适合表现流程、地图、建筑或堆叠概念。",
      "keywords": [
        "isometric_vector_block",
        "3d_icon_style",
        "orthographic_view_icon",
        "2.5d_style_pictogram",
        "isometric_process_flow",
        "soft_3d_clay_style",
        "claymorphism_icon",
        "glossy_3d_web_icon",
        "vector_voxel_art",
        "isometric_map_element",
        "stacked_layers_style",
        "3d_minimal_shape",
        "neo_brutalism_3d_icon",
        "low_poly_vector_icon",
        "isometric_grid_style",
        "3d_chart_icon",
        "soft_ui_3d_style (neumorphism)",
        "3d_cartoon_vector",
        "vector_3d_render_style",
        "soft_shadow_3d"
      ],
      "topics": [
        "business enterprise",
        "business information",
        "technology and engineering",
        "scientific research",
        "emergency response",
        "products and services",
        "online and remote learning",
        "market and exchange",
        "logistics",
        "supply chain",
        "architecture",
        "urban planning"
      ]
    },
    "geometric_and_abstract": {
      "description": "几何与抽象:概念性、模块化,使用基础形状(圆形、方形、三角形)构建图标。",
      "keywords": [
        "geometric_shape_build",
        "abstract_pictogram",
        "bauhaus_style_icon",
        "modular_icon_design",
        "low_poly_flat_icon",
        "geometric_pattern_fill",
        "sacred_geometry_lines",
        "crystal_polygon_shape",
        "memphis_style_elements",
        "color_block_composition",
        "tangram_style_icon",
        "minimal_geometric_glyph",
        "abstract_data_icon",
        "geometric_logo_style",
        "pattern_based_icon",
        "triangular_mesh_icon",
        "circles_and_squares_build",
        "minimal_abstract_form",
        "modernist_style_icon",
        "geometric_badge_design"
      ],
      "topics": [
        "mathematics",
        "natural science",
        "biomedical science",
        "scientific research",
        "scientific standards",
        "technology and engineering",
        "social sciences",
        "demographics",
        "economy",
        "market and exchange",
        "data visualization"
      ]
    },
    "textured_and_grainy": {
      "description": "纹理与颗粒:为扁平图标添加触感和深度,使用颗粒、纸张或喷漆等纹理。",
      "keywords": [
        "grain_texture_fill",
        "noise_overlay_effect",
        "spray_paint_texture",
        "stipple_effect_fill",
        "brushed_texture_icon",
        "paper_texture_background",
        "textured_shadow",
        "craft_paper_style",
        "flat_with_grain_shading",
        "distressed_vector_icon",
        "risograph_texture_effect",
        "grunge_icon_style",
        "canvas_texture_overlay",
        "minimal_texture_accent",
        "subtle_grain_overlay",
        "sand_texture_fill",
        "screen_print_effect_icon",
        "sponge_paint_texture",
        "chalky_texture"
      ],
      "topics": [
        "arts and entertainment",
        "culture",
        "conservation",
        "nature",
        "lifestyle",
        "leisure",
        "products and services",
        "food and drink",
        "crafts",
        "social condition"
      ]
    },
    "eco_and_nature": {
      "description": "生态与自然:强调有机、可持续和自然主题,常使用大地色系和流畅线条。",
      "keywords": [
        "organic_line_art_icon",
        "botanical_icon_style",
        "leaf_motif_icon",
        "natural_form_shape",
        "eco_friendly_badge",
        "recycled_paper_texture_fill",
        "hand_drawn_nature_icon",
        "organic_flowing_lines",
        "environmental_glyph",
        "sustainable_icon",
        "floral_line_art",
        "woodgrain_pattern_fill",
        "water_ripple_effect",
        "soft_natural_shape",
        "plant_silhouette_icon",
        "outdoor_adventure_style",
        "rustic_eco_icon"
      ],
      "topics": [
        "climate change",
        "conservation",
        "environmental pollution",
        "natural resource",
        "nature",
        "sustainability",
        "wellness",
        "lifestyle",
        "government policy",
        "leisure",
        "welfare",
        "agriculture"
      ]
    },
    "health_and_wellness": {
      "description": "健康与保健:干净、平静、柔和的风格,用于医疗、正念和生活方式等主题。",
      "keywords": [
        "clean_medical_icon",
        "soft_rounded_shapes",
        "calm_minimal_style",
        "medical_glyph_style",
        "heartbeat_line_art_icon",
        "organic_wellness_shape",
        "minimal_health_glyph",
        "line_art_anatomy_icon",
        "soft_gradient_fill_icon",
        "pill_shape_design",
        "yoga_pose_silhouette",
        "mindfulness_icon_style",
        "zen_style_brush_stroke",
        "clinical_clean_line",
        "medical_caduceus_style",
        "spa_and_relaxation_icon",
        "healthy_food_pictogram",
        "scientific_clean_icon"
      ],
      "topics": [
        "disease and condition",
        "government health care",
        "health facility",
        "health insurance",
        "health organisation",
        "health treatment and procedure",
        "medical profession",
        "private health care",
        "public health",
        "wellness",
        "lifestyle",
        "biomedical science",
        "social problem",
        "family",
        "leisure"
      ]
    },
    "festive_and_celebratory": {
      "description": "节日与庆典:明亮、欢快、有趣,用于假日、派对、公告和活动主题。",
      "keywords": [
        "confetti_pattern_fill",
        "celebration_icon",
        "party_doodle_style",
        "holiday_glyph_set",
        "sparkle_and_shine_accent",
        "ribbon_and_banner_style",
        "decorative_flourish_icon",
        "bright_gradient_fill",
        "carnival_style_pictogram",
        "festive_badge_design",
        "birthday_icon_style",
        "event_pictogram_style",
        "fireworks_burst_icon",
        "playful_holiday_cartoon",
        "invitation_style_glyph",
        "gold_foil_accent",
        "retro_party_style",
        "seasonal_icon_pack",
        "celebratory_burst_shape"
      ],
      "topics": [
        "anniversary",
        "award and prize",
        "birthday",
        "celebrity",
        "ceremony",
        "religious festival and holiday",
        "sport event",
        "sport achievement",
        "leisure",
        "lifestyle",
        "family",
        "communities",
        "culture",
        "record and achievement"
      ]
    },
    "pop_art_and_comic": {
      "description": "波普与漫画:大胆、醒目、高对比度,使用半色调圆点和粗黑轮廓等漫画技巧。",
      "keywords": [
        "pop_art_style_icon",
        "comic_book_pictogram",
        "halftone_dot_fill",
        "bold_black_outline",
        "dynamic_action_lines",
        "ben_day_dots_fill",
        "comic_speech_bubble_icon",
        "pop_art_explosion_shape",
        "graphic_high_contrast",
        "retro_comic_style_icon",
        "warhol_inspired_icon",
        "screen_print_look_icon",
        "comic_hatching_lines_fill",
        "sticker_style_pop_art",
        "bold_graphic_shape",
        "pop_art_shadow_style",
        "graphic_poster_style",
        "cartoon_pop_art"
      ],
      "topics": [
        "arts and entertainment",
        "culture",
        "mass media",
        "celebrity",
        "leisure",
        "lifestyle",
        "social problem",
        "products and services",
        "advertising",
        "civil unrest",
        "social condition"
      ]
    }
  }