57 lines
1.8 KiB
HTML
57 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Farbhelfer</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Farbhelfer</h1>
|
|
<nav>
|
|
<button class="tab-btn active" data-tab="picker">Picker</button>
|
|
<button class="tab-btn" data-tab="eingabe">Eingabe</button>
|
|
<button class="tab-btn" data-tab="harmonien">Harmonien</button>
|
|
<button class="tab-btn" data-tab="sammlung">Sammlung</button>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<section id="tab-picker" class="tab-content active">
|
|
<p>Picker kommt hier</p>
|
|
</section>
|
|
<section id="tab-eingabe" class="tab-content">
|
|
<h2>Farbe eingeben</h2>
|
|
<div id="eingabe-preview" class="color-preview" style="background:#3a8fc1"></div>
|
|
<div class="color-codes">
|
|
<div class="color-code-group">
|
|
<label for="eingabe-hex">Hex</label>
|
|
<input id="eingabe-hex" type="text" value="#3a8fc1" maxlength="7">
|
|
</div>
|
|
<div class="color-code-group">
|
|
<label for="eingabe-rgb">RGB</label>
|
|
<input id="eingabe-rgb" type="text" value="58, 143, 193">
|
|
</div>
|
|
<div class="color-code-group">
|
|
<label for="eingabe-hsl">HSL</label>
|
|
<input id="eingabe-hsl" type="text" value="204, 54%, 49%">
|
|
</div>
|
|
</div>
|
|
<div style="display:flex;gap:0.5rem">
|
|
<button class="action-btn" id="eingabe-fav-btn">Zu Favoriten</button>
|
|
<button class="action-btn" id="eingabe-schema-btn">Zu Schema hinzufügen</button>
|
|
</div>
|
|
</section>
|
|
<section id="tab-harmonien" class="tab-content">
|
|
<p>Harmonien kommen hier</p>
|
|
</section>
|
|
<section id="tab-sammlung" class="tab-content">
|
|
<p>Sammlung kommt hier</p>
|
|
</section>
|
|
</main>
|
|
|
|
<script type="module" src="js/app.js"></script>
|
|
</body>
|
|
</html>
|