Untitled

 avatar
unknown
plain_text
a month ago
4.7 kB
3
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Brand Color Theme Evaluation</title>
    <style>
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 40px;
            background-color: #F0F2F5;
            color: #1A1A1A;
        }
        h1 { text-align: center; margin-bottom: 30px; }
        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .card {
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        /* Theme Variations */
        .light-theme { background-color: #FAFAFA; color: #1A1A1A; }
        .dark-theme { background-color: #121212; color: #E0E0E0; }
        
        .badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        /* Interactive Elements */
        .btn-green {
            background-color: #0AFF94;
            color: #121212;
            border: none;
            padding: 12px 24px;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
            display: inline-block;
            margin-top: 15px;
        }
        .dark-theme .btn-green {
            box-shadow: 0 0 15px rgba(10, 255, 148, 0.4);
        }
        
        .btn-navy {
            background-color: #001F5B;
            color: #FFFFFF;
            border: none;
            padding: 12px 24px;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
            display: inline-block;
            margin-top: 15px;
        }
        .dark-theme .btn-navy {
            border: 1px solid #001F5B;
            box-shadow: 0 0 15px rgba(0, 31, 91, 0.6);
        }
        
        .text-green { color: #0AFF94; font-weight: bold; }
        .text-navy { color: #001F5B; font-weight: bold; }
        
        p { line-height: 1.6; font-size: 0.95rem; }
    </style>
</head>
<body>

    <h1>Brand Color Visualizer</h1>
    
    <div class="grid">
        <!-- Section 1: 0AFF94 on Light -->
        <div class="card light-theme">
            <span class="badge" style="background-color: #0AFF94; color: #121212;">Spring Green Identity</span>
            <h2>Light Theme Interface</h2>
            <p>This layout uses <span class="text-green">#001F5B alternative</span> details alongside our vibrant green accent. Notice how the green background button pops heavily, but using it as thin text on white can strain the eyes.</p>
            <button class="btn-green">Action Button</button>
        </div>

        <!-- Section 2: 0AFF94 on Dark -->
        <div class="card dark-theme">
            <span class="badge" style="background-color: #0AFF94; color: #121212;">Spring Green Identity</span>
            <h2>Dark Theme Interface</h2>
            <p>This is where <span class="text-green">#0AFF94</span> shines perfectly. The contrast against the true dark backdrop creates a luminous, high-tech aesthetic that instantly commands digital attention.</p>
            <button class="btn-green">Action Button</button>
        </div>

        <!-- Section 3: Dark Navy on Light -->
        <div class="card light-theme">
            <span class="badge" style="background-color: #001F5B; color: #FFFFFF;">Dark Navy Identity</span>
            <h2>Light Theme Interface</h2>
            <p>Using <span class="text-navy">Dark Navy (#001F5B)</span> here establishes premium corporate structure. It delivers perfect contrast ratios, maximum readability, and an air of traditional security.</p>
            <button class="btn-navy">Secure Action</button>
        </div>

        <!-- Section 4: Dark Navy on Dark -->
        <div class="card dark-theme">
            <span class="badge" style="background-color: #001F5B; color: #FFFFFF;">Dark Navy Identity</span>
            <h2>Dark Theme Interface</h2>
            <p>In dark UI modes, a deep corporate navy can risk getting lost. It requires brighter supporting typography or subtle glowing borders to maintain its premium identity effectively.</p>
            <button class="btn-navy">Secure Action</button>
        </div>
    </div>

</body>
</html>
Editor is loading...
Leave a Comment