-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
142 lines (136 loc) · 4.96 KB
/
index.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>HEX Contrast Ratio Calculator</title>
<meta name="viewport" content="viewport-fit=cover, width=device-width" />
<meta
name="description"
content="HEXの2色(前景色と背景色)のカラーセットからコントラスト比を計算し、WCAG2.2が定める基準を達成しているかを判定します。"
/>
<meta name="keywords" content="Contrast,Ratio,HEX,WCAG2.2,Calculator,oti" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<link rel="image_src" href="og-image.jpg" />
<link rel="canonical" href="https://hex-crc.dskd.jp" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<link href="index.css" rel="stylesheet" />
<script type="module">
import { CRC } from "./script/index.mjs";
new CRC(document.querySelector(".Main"));
</script>
</head>
<body>
<h1 class="Title">HEX Contrast Ratio Calculator</h1>
<main class="Main">
<p>
HEXの2色(前景色と背景色)のカラーセットからコントラスト比を計算し、<a
href="https://waic.jp/translations/WCAG22/#contrast-minimum"
>WCAG2.2</a
>が定める基準を達成しているかを検証します。
</p>
<details class="Convert">
<summary>コードとの変換</summary>
<div class="ConvertBody">
<textarea class="Textarea" id="Textarea" name="array"></textarea>
<div class="ConvertActions">
<button id="ConvertToItems" class="ConvertButton -buttonReset">
フォームに変換
<span class="material-symbols-outlined" aria-hidden="true">
download
</span>
</button>
<button id="ConvertToArray" class="ConvertButton -buttonReset">
配列に変換
<span class="material-symbols-outlined" aria-hidden="true">
upload
</span>
</button>
</div>
</div>
</details>
<div class="Labels" aria-hidden="true">
<p class="Label InputLabel" id="FrontColorLabel">前景色</p>
<p class="Label InputLabel" id="BackColorLabel">背景色</p>
<p class="Label OutputLabel" id="ContrastRatioLabel">コントラスト比</p>
<p class="Label OutputLabel" id="NormalSizeLabel">通常サイズ</p>
<p class="Label OutputLabel" id="LargeSizeLabel">大きなサイズ</p>
</div>
<div class="List">
<div class="Item">
<button class="Add -buttonReset">
<span class="-invisible">カラーセットを追加</span>
<span class="material-symbols-outlined" aria-hidden="true">
add_circle
</span>
</button>
<button class="Del -buttonReset">
<span class="-invisible">カラーセットを削除</span>
<span class="material-symbols-outlined" aria-hidden="true">
remove_circle
</span>
</button>
<button class="Clear -buttonReset">
<span class="-invisible">カラーセットをクリア</span>
<span class="material-symbols-outlined" aria-hidden="true">
format_color_reset
</span>
</button>
<div class="InputItem">
<input
class="Input -f"
aria-labelledby="FrontColorLabel"
type="text"
name="hex"
/>
<input
class="Color -f -buttonReset"
aria-hidden="true"
type="color"
name="color"
/>
</div>
<div class="InputItem">
<input
class="Input -b"
aria-labelledby="BackColorLabel"
type="text"
name="hex"
/>
<input
class="Color -b -buttonReset"
aria-hidden="true"
type="color"
name="color"
/>
</div>
<output
class="OutputItem Ratio"
aria-labelledby="ContrastRatioLabel"
></output>
<output
class="OutputItem Result -normal"
aria-labelledby="NormalSizeLabel"
></output>
<output
class="OutputItem Result -large"
aria-labelledby="LargeSizeLabel"
></output>
</div>
</div>
</main>
<footer class="Footer">
<address class="Address">
<p>
このウェブアプリは
<a href="https://x.com/otiext" target="_blank">oti</a>
が作りました。
</p>
<p><a href="https://github.com/oti/hex-crc">GitHub</a>, MIT License</p>
</address>
</footer>
</body>
</html>