-
Notifications
You must be signed in to change notification settings - Fork 0
/
pallet.html
61 lines (61 loc) · 2.85 KB
/
pallet.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property='og:type' content='website'>
<meta property='og:title' content="色見本 - ColorPallet">
<meta property='og:url' content='https://kinoko2k.github.io/ServiceColorCode/pallet.html'>
<meta property="og:description" content="
カラーパレット
Developer: X@kinoko1216">
<meta property="og:image" content="img/Kinoko_2K.png">
<meta property="og:profile:username" content="Kinoko_2K">
<meta name="twitter:card" content="summary">
<title>ColorPallet</title>
<meta name="description" content="色見本" />
<link rel="stylesheet" href="pallet_style.css">
</head>
<body>
<header>
<div class="header-container">
<div class="logo">
<a href="https://kinoko2k.github.io/ServiceColorCode/"><img src="https://avatars.githubusercontent.com/u/65443692?s=48&v=4" alt="アイコン"></a>
</div>
<div class="search-bar">
<a href="https://twitter.com/intent/tweet?text=カラーコードサービスリスト - @kinoko1216%0Ahttps://kinoko2k.github.io/ServiceColorCode/" target="_blank">
<img src="img/Twitter.svg" alt="Twitter" class="twitter-icon">
</a>
<a href="https://github.com/kinoko2k/ServiceColorCode" target="_blank">
<img src="img/GitHub.png" alt="GitHub" class="github-icon">
</a>
</div>
</div>
</header>
<main>
<div class="content-list">
<div class="palette" id="palette">
<canvas id="colorCanvas"></canvas>
</div>
<div class="color-info">
<input type="text" id="colorCode" readonly>
<button id="copyButton">コピー</button>
</div>
</div>
</main>
<footer>
<p>© 2024/06/09 <a href="https://github.com/kinoko2k/ServiceColorCode">ServiceColorCode</a><br><a href="https://github.com/kinoko2k/">Dev Kinoko_2K</a><br>※掲載されているサービス・グループはスポンサーシップ、パートナーシップ等に該当しません。掲載されているサービスについては、記載先のURLをご確認ください。</p>
</footer>
<div id="notification" class="notification"></div>
<div class="flower-menu" id="flowerMenu">
<div class="menu-button" onclick="toggleFlowerMenu()">❓</div>
<div class="menu-content">
<a href="index.html">サービスリスト</a>
<a href="group/index.html">グループリスト</a>
<a href="#">色見本</a>
<a href="https://github.com/kinoko2k/ServiceColorCode">GitHub</a>
</div>
</div>
<script src="pallet_script.js"></script>
</body>
</html>