|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Soft Systems Palette</title> |
| 7 | + <style> |
| 8 | + body { |
| 9 | + font-family: Arial, sans-serif; |
| 10 | + margin: 0; |
| 11 | + padding: 20px; |
| 12 | + background-color: #FFFBF9; /* Base */ |
| 13 | + color: #3A3535; /* Slate */ |
| 14 | + } |
| 15 | + |
| 16 | + .swatch-container { |
| 17 | + display: flex; |
| 18 | + flex-wrap: wrap; |
| 19 | + gap: 20px; |
| 20 | + justify-content: center; |
| 21 | + } |
| 22 | + |
| 23 | + .swatch { |
| 24 | + width: 180px; |
| 25 | + height: 180px; |
| 26 | + border-radius: 10px; |
| 27 | + display: flex; |
| 28 | + align-items: center; |
| 29 | + justify-content: center; |
| 30 | + flex-direction: column; |
| 31 | + color: #FFFFFF; |
| 32 | + font-size: 16px; |
| 33 | + font-weight: bold; |
| 34 | + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); |
| 35 | + } |
| 36 | + |
| 37 | + .swatch span { |
| 38 | + font-size: 12px; |
| 39 | + font-weight: normal; |
| 40 | + } |
| 41 | + |
| 42 | + /* Colors */ |
| 43 | + .swatch.base { background-color: #FFFBF9; color: #3A3535; } |
| 44 | + .swatch.slate { background-color: #3A3535; } |
| 45 | + .swatch.boldnbloom { background-color: #FF9B59; } |
| 46 | + .swatch.mute { background-color: #EDA7A7; } |
| 47 | + .swatch.deep { background-color: #14367C; } |
| 48 | + .swatch.alien { background-color: #D6FFAF; color: #3A3535; } |
| 49 | + </style> |
| 50 | +</head> |
| 51 | +<body> |
| 52 | + <h1>Soft Systems Palette</h1> |
| 53 | + <p>A thoughtfully designed palette for Symphonic-Joules projects. Each shade plays a unique role in creating a harmonious, visually appealing design.</p> |
| 54 | + <div class="swatch-container"> |
| 55 | + <div class="swatch base"> |
| 56 | + #Base |
| 57 | + <span>#FFFBF9</span> |
| 58 | + </div> |
| 59 | + <div class="swatch slate"> |
| 60 | + #Slate |
| 61 | + <span>#3A3535</span> |
| 62 | + </div> |
| 63 | + <div class="swatch boldnbloom"> |
| 64 | + #BoldnBloom |
| 65 | + <span>#FF9B59</span> |
| 66 | + </div> |
| 67 | + <div class="swatch mute"> |
| 68 | + #Mute |
| 69 | + <span>#EDA7A7</span> |
| 70 | + </div> |
| 71 | + <div class="swatch deep"> |
| 72 | + #Deep |
| 73 | + <span>#14367C</span> |
| 74 | + </div> |
| 75 | + <div class="swatch alien"> |
| 76 | + #Alien |
| 77 | + <span>#D6FFAF</span> |
| 78 | + </div> |
| 79 | + </div> |
| 80 | +</body> |
| 81 | +</html> |
0 commit comments