LeanCode
液态铬DNA品牌概念海报

液态铬DNA品牌概念海报

English
2x2 grid, 16:9, do this for 4 fortune 500 brands: class Liquid_chrome_DNA:
    def __init__(self):
        self.subject = "[input]" 

        self.parents = {
            "composition_parent": "Exploded sculptural hero, mirror-metal forms floating in mid-morph",
            "material_parent":    "Liquid chromium, mercury droplets, mirror-polished steel, rippling reflections",
            "graphic_parent":     "Y2K tech-brand poster with reflective gradient overlays",
            "atmosphere_parent":  "Infinite white-to-iridescent studio with sharp reflections"
        }

        self.mutations = {
            "semantic_mutation":    "Within the chrome, a tiny world reflects the idea, brand, or meaning it represents",
            "information_mutation": "Surface-curvature callouts, reflectance legend, form-flow arrows, geometry markers",
            "medium_mutation":      "Holo-foil brand catalog with mirror-finish stock",
            "scale_mutation":       "Macro of the chrome with microscopic reflection-ripple detail"
        }

        self.color_dna = {
            "base": "# 0A0B10",   "primary":   "# C9D6FF",
            "secondary": "# FF36C8",   "accent": "# 36FFE0",
            "glow": "# B86CFF"
        }

        # composition · material · graphic · atmosphere · mutation
        self. style_mix = [0.24, 0.36, 0.20, 0.10, 0.10]

    def generate_subject(self):
        subject = """
        [LOGO] as a premium hero object, partially exploded into
        components. Reveal materials, internal mechanisms, construction
        traces, surface finish, signature features, and a miniature world
        inside showing its origin, use, and meaning. If details are
        missing, infer plausible premium materials, construction logic,
        and visually distinctive components.
        """
        return render(
            subject,
            format="vertical chrome brand poster",
            title="LIQUID_CHROME_DNA",
            subtitle="REFLECTS EVERYTHING",
            palette=self.color_dna,
            constraints="premium, precise, bold saturated color, "
                        "minimal clutter, sharp focus, no watermark"
        )1b:T
中文
2x2网格,16:9,为4个财富500强品牌执行此操作:class Liquid_chrome_DNA:
    def __init__(self):
        self.subject = "[input]" 

        self.parents = {
            "composition_parent": "爆炸式雕塑英雄,在中期变形中漂浮的镜面金属形式",
            "material_parent":    "液态铬,水银滴,镜面抛光钢,波纹反射",
            "graphic_parent":     "带有反射渐变叠加的Y2K科技品牌海报",
            "atmosphere_parent":  "无限的白转虹彩色工作室,带有尖锐的反射"
        }

        self.mutations = {
            "semantic_mutation":    "在铬金属内部,一个小世界反映了它所代表的想法、品牌或意义",
            "information_mutation": "表面曲率标注,反射率图例,形式流向箭头,几何标记",
            "medium_mutation":      "带有镜面饰面库存的全息铝箔品牌目录",
            "scale_mutation":       "铬金属的宏观视角,带有微观的反射波纹细节"
        }

        self.color_dna = {
            "base": "# 0A0B10",   "primary":   "# C9D6FF",
            "secondary": "# FF36C8",   "accent": "# 36FFE0",
            "glow": "# B86CFF"
        }

        # 构图 · 材料 · 图形 · 氛围 · 变异
        self. style_mix = [0.24, 0.36, 0.20, 0.10, 0.10]

    def generate_subject(self):
        subject = """
        [LOGO] 作为高级英雄物体,部分爆炸成组件。展示材料、内部机制、施工痕迹、表面光洁度、签名特征,以及内部展示其起源、用途和意义的微型世界。如果缺少细节,则推断合理的高级材料、施工逻辑和视觉上独特的组件。
        """
        return render(
            subject,
            format="垂直铬金属品牌海报",
            title="LIQUID_CHROME_DNA",
            subtitle="反射一切",
            palette=self.color_dna,
            constraints="高级、精确、大胆的饱和色、极简杂乱、清晰焦点、无水印"
        )