-
Notifications
You must be signed in to change notification settings - Fork 3
/
pwa-palette.html
47 lines (46 loc) · 1.66 KB
/
pwa-palette.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PWA Logo Palette</title>
<style>
html {
background: rgb(233, 233, 233);
height: 100vh;
color: #3D3D3D;
}
body {
display: flex;
flex-direction: column;
max-width: 50vw;
margin: auto;
padding:2rem;
font-family: 'Courier New', Courier, monospace;
}
</style>
</head>
<body>
<h1>Welcome to the PWA logo palette library!</h1>
<p>Here you can find a nice array of PWA logo color combination. Click on each one to open them in the official PWA logo generator, <a href="https://diek.us/pwinter">The PWintwer</a>!</p>
<ul>
<li><a href="web+pwinter://3D3D3D-5A0FC8-3D3D3D">Official PWA logo</a></li>
<li>Browser Inspired</li>
<ul>
<li><a href="web+pwinter://037CD5-63E14D-37C0F7">Edgy Ocean wave</a></li>
<li><a href="web+pwinter://FF5B2D-5956CE-FFAC35">For fox sake</a></li>
<li><a href="web+pwinter://7882FF-4D5CC1-7882FF">Saturn's Galaxy Ring</a></li>
</ul>
<li>Tech basics</li>
<ul>
<li><a href="web+pwinter://FF0000-00FF00-0000FF">ARR GEE BEE</a></li>
</ul>
<li>Much flag approve</li>
<ul>
<li><a href="web+pwinter://0055A4-FFFFFF-EF4135">Oh la la</a></li>
<li><a href="web+pwinter://000000-DD0000-FFCE00">Bratwurst und bier</a></li>
</ul>
</ul>
</body>
</html>