Explore AI generated designs, images, art and prompts by top community artists and designers.
A beautifully designed logo featuring a Celtic knot intertwined with a Viking longship , symbolizing the fusion of Celtic and Viking heritage. The logo is circular , with intricate details of runes and knotwork forming the border. At the center , a harp and a sword cross each other , representing music and strength. The background features subtle gradients of deep emerald green and gold , evoking a mystical and timeless feel. The text "Nordic Harmony" (or your channel name) is written in elegant , rune-inspired typography below the emblem. The design is clean , modern , and scalable for YouTube branding , with a balance of epic fantasy and minimalism. --v 5 --ar 1:1 --q 2 ,
"Un fiore di ninfea viola che galleggia serenamente su uno stagno tranquillo , con petali morbidi e riflessi luminosi sull'acqua cristallina. Intorno al fiore , una leggera foschia avvolge l'ambiente , creando un'atmosfera mistica e contemplativa. Le foglie verdi si riflettono sull'acqua , con delicate gocce che brillano sotto la luce di un tramonto dorato. L'immagine cattura la bellezza naturale e l'equilibrio perfetto tra la natura e la tranquillità." ,
Create a dramatic and tragic conceptual sculpture of a woman named Arezoo , embodying the essence of an impossible wish , a longing that consumes the soul with unfulfilled desire and despair. The sculpture should be a bust carved from black marble , with golden cracks running through it in the style of kintsugi , symbolizing the beauty in her broken dreams. Her face should reflect the human struggle for unattainable dreams through a mournful expression , with crimson streaks carved into the stone to represent a bloodstained visage , carrying the weight of lost hopes. Her hair and flowing robes should be intricately detailed , capturing a classical , historical aesthetic. The setting must be melancholic , with a deep red atmosphere surrounding the sculpture , heavy shadows , and a sense of sorrow , placed on a reflective black surface to enhance the dramatic effect. The background should feature subtle , storytelling elements like a fading star or a cracked pedestal , symbolizing shattered dreams. The overall style should be cinematic , with a fantasy and historical feel , highly detailed , 8K resolution , soft lighting , and an emotional tone. ,
majestic and noble heraldic coat of arms featuring the name 'Vitali Klann'. The design should include a strong shield as the centerpiece , adorned with intricate medieval-style engravings. Two powerful creatures , such as lions , eagles , or wolves , serve as supporters on either side , symbolizing strength and honor. A regal crown rests atop the shield , representing nobility and legacy. A flowing banner beneath the shield proudly displays the name 'Vitali Klann' in an elegant , historic font. The color scheme should be rich and striking—deep reds , golds , and dark blues , evoking power and prestige. The overall aesthetic should feel grand , timeless , and full of heritage. ,
Create a dramatic and tragic conceptual sculpture of a woman named Arezoo , embodying the essence of an impossible wish , a longing that consumes the soul with unfulfilled desire and despair. The sculpture should be a bust carved from black marble , with golden cracks running through it in the style of kintsugi , symbolizing the beauty in her broken dreams. Her face should reflect the human struggle for unattainable dreams through a mournful expression , with crimson streaks carved into the stone to represent a bloodstained visage , carrying the weight of lost hopes. Her hair and flowing robes should be intricately detailed , capturing a classical , historical aesthetic. The setting must be melancholic , with a deep red atmosphere surrounding the sculpture , heavy shadows , and a sense of sorrow , placed on a reflective black surface to enhance the dramatic effect. The background should feature subtle , storytelling elements like a fading star or a cracked pedestal , symbolizing shattered dreams. The overall style should be cinematic , with a fantasy and historical feel , highly detailed , 8K resolution , soft lighting , and an emotional tone. ,
# Fonction pour créer une sphère pour la tête def create_head(): bpy.ops.mesh.primitive_uv_sphere_add(radius=1 , location=(0 , 0 , 2)) head = bpy.context.active_object head.name = "Head" bpy.ops.object.shade_smooth() # Fonction pour créer des cylindres pour les bras et les jambes def create_limb(name , radius , height , location): bpy.ops.mesh.primitive_cylinder_add(radius=radius , depth=height , location=location) limb = bpy.context.active_object limb.name = name bpy.ops.object.shade_smooth() # Fonction pour créer un cône pour le chapeau def create_hat(): bpy.ops.mesh.primitive_cone_add(radius1=1 , radius2=0 , depth=2 , location=(0 , 0 , 3.5)) hat = bpy.context.active_object hat.name = "Hat" bpy.ops.object.shade_smooth() # Fonction pour créer une sphère pour les mains def create_hands(): bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(1.5 , 0 , 1)) hand1 = bpy.context.active_object hand1.name = "Hand1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(-1.5 , 0 , 1)) hand2 = bpy.context.active_object hand2.name = "Hand2" bpy.ops.object.shade_smooth() # Fonction pour créer des cubes pour le torse et les pieds def create_body(): bpy.ops.mesh.primitive_cube_add(size=2 , location=(0 , 0 , 0.5)) body = bpy.context.active_object body.name = "Body" bpy.ops.object.shade_smooth() def create_feet(): bpy.ops.mesh.primitive_cube_add(size=1 , location=(1 , 0 , -1)) foot1 = bpy.context.active_object foot1.name = "Foot1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_cube_add(size=1 , location=(-1 , 0 , -1)) foot2 = bpy.context.active_object foot2.name = "Foot2" bpy.ops.object.shade_smooth() # Appel des fonctions pour créer le personnage create_head() create_limb("RightArm" , 0.2 , 2 , (1.5 , 0 , 1)) create_limb("LeftArm" , 0.2 , 2 , (-1.5 , 0 , 1)) create_limb("RightLeg" , 0.3 , 2 , (0.5 , 0 , -1)) create_limb("LeftLeg" , 0.3 , 2 , (-0.5 , 0 , -1)) create_hat() create_hands() create_body() create_feet() ,
import bpy # Fonction pour créer une sphère pour la tête def create_head(): bpy.ops.mesh.primitive_uv_sphere_add(radius=1 , location=(0 , 0 , 2)) head = bpy.context.active_object head.name = "Head" bpy.ops.object.shade_smooth() # Fonction pour créer des cylindres pour les bras et les jambes def create_limb(name , radius , height , location): bpy.ops.mesh.primitive_cylinder_add(radius=radius , depth=height , location=location) limb = bpy.context.active_object limb.name = name bpy.ops.object.shade_smooth() # Fonction pour créer un cône pour le chapeau def create_hat(): ,
import bpy # Fonction pour créer une sphère pour la tête def create_head(): bpy.ops.mesh.primitive_uv_sphere_add(radius=1 , location=(0 , 0 , 2)) head = bpy.context.active_object head.name = "Head" bpy.ops.object.shade_smooth() # Fonction pour créer des cylindres pour les bras et les jambes def create_limb(name , radius , height , location): bpy.ops.mesh.primitive_cylinder_add(radius=radius , depth=height , location=location) limb = bpy.context.active_object limb.name = name bpy.ops.object.shade_smooth() # Fonction pour créer un cône pour le chapeau def create_hat(): bpy.ops.mesh.primitive_cone_add(radius1=1 , radius2=0 , depth=2 , location=(0 , 0 , 3.5)) hat = bpy.context.active_object hat.name = "Hat" bpy.ops.object.shade_smooth() # Fonction pour créer une sphère pour les mains def create_hands(): bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(1.5 , 0 , 1)) hand1 = bpy.context.active_object hand1.name = "Hand1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(-1.5 , 0 , 1)) hand2 = bpy.context.active_object hand2.name = "Hand2" bpy.ops.object.shade_smooth() # Fonction pour créer des cubes pour le torse et les pieds def create_body(): bpy.ops.mesh.primitive_cube_add(size=2 , location=(0 , 0 , 0.5)) body = bpy.context.active_object body.name = "Body" bpy.ops.object.shade_smooth() def create_feet(): bpy.ops.mesh.primitive_cube_add(size=1 , location=(1 , 0 , -1)) foot1 = bpy.context.active_object foot1.name = "Foot1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_cube_add(size=1 , location=(-1 , 0 , -1)) foot2 = bpy.context.active_object foot2.name = "Foot2" bpy.ops.object.shade_smooth() # Appel des fonctions pour créer le personnage create_head() create_limb("RightArm" , 0.2 , 2 , (1.5 , 0 , 1)) create_limb("LeftArm" , 0.2 , 2 , (-1.5 , 0 , 1)) create_limb("RightLeg" , 0.3 , 2 , (0.5 , 0 , -1)) create_limb("LeftLeg" , 0.3 , 2 , (-0.5 , 0 , -1)) create_hat() create_hands() create_body() create_feet() ,
import bpy # Fonction pour créer une sphère pour la tête def create_head(): bpy.ops.mesh.primitive_uv_sphere_add(radius=1 , location=(0 , 0 , 2)) head = bpy.context.active_object head.name = "Head" bpy.ops.object.shade_smooth() # Fonction pour créer des cylindres pour les bras et les jambes def create_limb(name , radius , height , location): bpy.ops.mesh.primitive_cylinder_add(radius=radius , depth=height , location=location) limb = bpy.context.active_object limb.name = name bpy.ops.object.shade_smooth() # Fonction pour créer un cône pour le chapeau def create_hat(): bpy.ops.mesh.primitive_cone_add(radius1=1 , radius2=0 , depth=2 , location=(0 , 0 , 3.5)) hat = bpy.context.active_object hat.name = "Hat" bpy.ops.object.shade_smooth() # Fonction pour créer une sphère pour les mains def create_hands(): bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(1.5 , 0 , 1)) hand1 = bpy.context.active_object hand1.name = "Hand1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_uv_sphere_add(radius=0.5 , location=(-1.5 , 0 , 1)) hand2 = bpy.context.active_object hand2.name = "Hand2" bpy.ops.object.shade_smooth() # Fonction pour créer des cubes pour le torse et les pieds def create_body(): bpy.ops.mesh.primitive_cube_add(size=2 , location=(0 , 0 , 0.5)) body = bpy.context.active_object body.name = "Body" bpy.ops.object.shade_smooth() def create_feet(): bpy.ops.mesh.primitive_cube_add(size=1 , location=(1 , 0 , -1)) foot1 = bpy.context.active_object foot1.name = "Foot1" bpy.ops.object.shade_smooth() bpy.ops.mesh.primitive_cube_add(size=1 , location=(-1 , 0 , -1)) foot2 = bpy.context.active_object foot2.name = "Foot2" bpy.ops.object.shade_smooth() # Appel des fonctions pour créer le personnage create_head() create_limb("RightArm" , 0.2 , 2 , (1.5 , 0 , 1)) create_limb("LeftArm" , 0.2 , 2 , (-1.5 , 0 , 1)) create_limb("RightLeg" , 0.3 , 2 , (0.5 , 0 , -1)) create_limb("LeftLeg" , 0.3 , 2 , (-0.5 , 0 , -1)) create_hat() create_hands() create_body() create_feet() ,
Um fundo misterioso e envolvente em tons de marsala profundo e dourado brilhante , simbolizando a transição entre passado e presente. De um lado , sombras esfumadas em marsala escuro e texturas nebulosas , com relógios derretendo e correntes douradas quebrando , representando o aprisionamento no passado. Do outro lado , feixes de luz dourada intensa irradiam uma sensação de libertação , clareza e um novo começo. No centro , uma silhueta humana caminha em direção à luz , deixando para trás sombras e fragmentos do passado. Partículas de brilho dourado flutuam no ar , criando um efeito etéreo e introspectivo. ,
Um fundo misterioso e envolvente em tons de marsala profundo e dourado brilhante , simbolizando a transição entre passado e presente. De um lado , sombras esfumadas em marsala escuro e texturas nebulosas , com relógios derretendo e correntes douradas quebrando , representando o aprisionamento no passado. Do outro lado , feixes de luz dourada intensa irradiam uma sensação de libertação , clareza e um novo começo. No centro , uma silhueta humana caminha em direção à luz , deixando para trás sombras e fragmentos do passado. Partículas de brilho dourado flutuam no ar , criando um efeito etéreo e introspectivo. ,
Vishnu , deep sapphire blue skin with a celestial glow , adorned in intricate golden ornaments and celestial armor. Multiple arms wield the Sudarshana Chakra , a golden mace , and a luminous conch. A flowing blue aura blends with swirling cosmic dust and nebulae. Vast galaxy backdrop with deep purples , blues , and golden celestial patterns. Ethereal god rays illuminate him , enhancing his divine , omnipotent presence. Art style: Semi-realistic , painterly textures , rich lighting , fine details. Camera angle and shot: Low-angle , wide shot for a grand , cinematic feel. ,
una carta de la baraja española , mostrando a un rey medieval , rey con una barba grisasea y una corona , sosteniendo un garrote en su mano derecha y de cuerpo completo. El garrote debe ser un palo grueso y pesado de color verde , de apariencia rústica , con una textura de madera oscura , como si fuera un bastón de combate o una herramienta ancestral. El rey debe estar vestido con ropas reales de colores ricos , como rojo , dorado y azul , con detalles ornamentales y una corona elaborada. El fondo debe ser elegante pero sencillo , en tonos cálidos , con símbolos de bastos y bordes decorativos. El garrote debe ser el centro de atención en su mano , con una apariencia sólida y poderosa , representando la fuerza y la autoridad del rey. en la parte superior izquierda debe aparecer el numero "12" y en la parte inferior central debe aparecer el mismo garrote que usa el rey. el fonde debe ser blanco ,