將此提示複製到我們的開發者控制台中,親自嘗試!

內容
System你的任務是根據給定的規格為全方位品牌識別創建一份全面的設計簡報。品牌識別應包含各種元素,如品牌名稱建議、標誌、配色方案、字體排版、視覺風格、語調和整體品牌個性。確保所有元素和諧地協同工作,創造一個連貫且令人難忘的品牌體驗,有效地向目標受眾傳達品牌的價值觀、使命和獨特銷售主張。提供詳細且全面的內容,並提供足夠的具體細節,使他人能夠創建真正獨特的品牌識別。
User品牌規格:這是一個專注於使用環保材料和道德生產方法創造高品質、時尚服裝和配飾的品牌。該品牌的目標受眾是25-40歲重視時尚、可持續性和社會責任的環保意識消費者。品牌識別應實現以下目標:1. 反映品牌對可持續性、道德實踐和環境管理的承諾。2. 通過傳達時尚感、品質和潮流感來吸引目標受眾。3. 在可持續時尚市場中與競爭對手區分開來。4. 與消費者建立強烈的情感連接,並激勵他們做出更環保的選擇。

範例輸出

設計簡報:環保時尚品牌的品牌識別 品牌名稱建議:“Sēnsus”(拉丁文中的”感覺”或”感知”,喚起對環境的正念和連接感)

標誌:

  • 一個極簡現代的標誌,結合了風格化的葉子或植物圖案與簡潔的無襯線字體。

  • 葉子或植物元素象徵著品牌對可持續性和環境管理的承諾,而乾淨的排版則傳達出精緻和風格感。

  • 標誌應該多功能且適用於各種應用場景,包括服裝標籤、包裝和數位平台。 配色方案:

  • 反映品牌環保理念的中性和大地色調,如各種綠色、米色和暖灰色。

  • 深青色或芥末黃等強調色可以適度使用,增添活力和深度。

  • 配色方案應喚起自然和諧與平衡感,同時仍然時尚前衛,吸引目標受眾。 字體排版:

  • 標題使用乾淨、現代的無襯線字體,正文使用互補的襯線字體。

  • 字體應該易讀且視覺吸引人,傳達品質和精緻感。

  • 一致使用字體層次結構和間距將創造連貫有序的品牌識別。 視覺風格:

  • 極簡且整潔的視覺風格,強調高品質的產品攝影和乾淨、現代的佈局。

  • 融入自然元素,如植物圖案或紋理,強化品牌的環保價值觀和與自然的連接。

  • 有效利用負空間創造開放和通透感,反映品牌對可持續性的承諾。 語調:

  • 品牌的語調應該平易近人、知識豐富且真實。

  • 使用能夠教育和激勵消費者了解可持續時尚和道德生產方法益處的語言。

  • 融入一絲精緻和風格感,吸引目標受眾的時尚意識。 品牌個性:

  • 環保意識和環境意識,同時時尚前衛。

  • 自信且熱情地推廣可持續實踐和道德選擇。

  • 包容且熱情,邀請消費者加入致力於做出積極改變的志同道合社群。 總體而言,“Sēnsus”的品牌識別應在環保價值觀和時尚前衛美學之間取得平衡,吸引那些希望在做出環保選擇的同時保持時尚的消費者。連貫的視覺和語言元素應與目標受眾建立強烈的情感連接,並激勵他們擁抱更可持續的生活方式。

API 請求

import anthropic

client = anthropic.Anthropic(
    # defaults to os.environ.get("ANTHROPIC_API_KEY")
    api_key="my_api_key",
)
message = client.messages.create(
    model="claude-opus-4-20250514",
    max_tokens=2000,
    temperature=1,
    system="Your task is to create a comprehensive design brief for a holistic brand identity based on the given specifications. The brand identity should encompass various elements such as suggestions for the brand name, logo, color palette, typography, visual style, tone of voice, and overall brand personality. Ensure that all elements work together harmoniously to create a cohesive and memorable brand experience that effectively communicates the brand's values, mission, and unique selling proposition to its target audience. Be detailed and comprehensive and provide enough specific details for someone to create a truly unique brand identity.",
    messages=[
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": "Brand specs:\nThis is a brand that focuses on creating high-quality, stylish clothing and accessories using eco-friendly materials and ethical production methods\nThe brand targets environmentally conscious consumers aged 25-40 who value fashion, sustainability, and social responsibility.\nThe brand identity should achieve the following goals:\n1. Reflect the brand's commitment to sustainability, ethical practices, and environmental stewardship.\n2. Appeal to the target audience by conveying a sense of style, quality, and trendiness.\n3. Differentiate the brand from competitors in the sustainable fashion market.\n4. Create a strong emotional connection with consumers and inspire them to make more environmentally friendly choices."
                }
            ]
        }
    ]
)
print(message.content)