-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (76 loc) · 3.48 KB
/
index.html
File metadata and controls
103 lines (76 loc) · 3.48 KB
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
<!DOCTYPE html>
<html>
<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>Everblush</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- DM sans font -->
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="css/main.css" />
</head>
<body class="bg-bgDarker text-white p-8">
<!-- Header -->
<section class="p-8">
<div class="flex items-center align-middle justify-center">
<!-- Logo -->
<img class="logo shadow-2xl rounded-full" src="asset/everblush.png" alt="logo"></img>
<!-- Description -->
<div class="ml-10">
<h1 class="text-4xl font-medium">Everblush</h1>
<p class="text-xl">An Independent, Dark, Vibrant and Beautiful Colorscheme.</p>
</div>
</div>
<!-- Quick links -->
<nav class="flex justify-center space-x-4 mt-6">
<button class="font-medium px-4 py-2 border-2 border-blue text-white rounded-lg hover:bg-blue hover:text-bg">
<a href="https://discord.gg/KmARmpTegP">Discord</a>
</button>
<button class="font-medium px-4 py-2 border-2 border-magenta text-white rounded-lg hover:bg-magenta hover:text-bg">
<a href="https://github.com/Everblush">Github</a>
</button>
<button class="font-medium px-4 py-2 border-2 border-green text-white rounded-lg hover:bg-green hover:text-bg">
<a href="https://github.com/orgs/Everblush/repositories">Repos</a>
</button>
</nav>
</section>
<section class="p-8 text-center">
<!-- The preview -->
<div class="flex justify-center">
<img class="md:w-4/5 lg:w-9/12" src="asset/vscode.png" alt="VSCode preview"></img>
</div>
<p class="text-xl">
Everblush is a colorscheme, just like the rest in the ricers' community, but with beautiful syntax highlighting and carefully picked colors which are of a good contrast while being perfectly readable and soothing.
</p>
</section>
<!-- Color Palette -->
<section class="p-8 text-center">
<h1 class="text-4xl mb-8">Colors</h1>
<div class="lg:flex lg:justify-center m-1 text-center">
<div class="m-0.5 mx-auto p-4 w-4/5 lg:w-28 bg-red text-bg">#e57474</div>
<div class="m-0.5 mx-auto p-4 w-4/5 lg:w-28 bg-green text-bg">#8ccf7e</div>
<div class="m-0.5 mx-auto p-4 w-4/5 lg:w-28 bg-yellow text-bg">#e5c76b</div>
<div class="m-0.5 mx-auto p-4 w-4/5 lg:w-28 bg-blue text-bg">#67b0e8</div>
<div class="m-0.5 mx-auto p-4 w-4/5 lg:w-28 bg-magenta text-bg">#c47fd5</div>
<div class="m-0.5 mx-auto p-4 w-4/5 lg:w-28 bg-cyan text-bg">#6cbfbf</div>
<div class="m-0.5 mx-auto p-4 w-4/5 lg:w-28 bg-lightGray text-bg">#b3b9b8</div>
<div class="m-0.5 mx-auto p-4 w-4/5 lg:w-28 bg-white text-bg">#dadada</div>
<div class="m-0.5 mx-auto p-4 w-4/5 lg:w-28 bg-bg text-white">#232a2d</div>
<div class="m-0.5 mx-auto p-4 w-4/5 lg:w-28 bg-bgDark">#141b1e</div>
</div>
</section>
<!-- Footer -->
<section class="p-8 text-center">
<h1 class="text-4xl mb-8">Contribution</h1>
<p class="text-xl">
The contribution details will be soon released as they are WIP. Thank you for your interest towards Everblush
</p>
<div class="flex justify-center mt-6">
<img class="w-4/5 lg:w-auto shadow-2xl rounded" src="https://raw.githubusercontent.com/Everblush/.github/main/assets/term.png" alt=""></img>
</div>
</section>
</body>
</html>