-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcolors.html
61 lines (59 loc) · 2.28 KB
/
colors.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>
<head>
<title>Style Guide - Colors</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/plugins/prism.css" />
</head>
<body>
<div class="container-1032">
<div class="mb-32">
<h1 class="mb-8">Colour Palette</h1>
<p class="mb-8">Convey meaning through color with a handful of color utility classes.</p>
</div>
<!-- Background colors -->
<div class="mb-32">
<h2 class="mb-24">1. Background colors</h2>
<div class="dark-grey-clr-bg pd-40 mb-8">
<p class="text-16 white-clr">hsl(202, 57%, 15%) - Dark Grey Color</p>
</div>
<div class="grey-clr-bg pd-40 mb-8">
<p class="text-16 white-clr">hsl(201, 23%, 34%) - Grey Color</p>
</div>
<div class="light-grey-clr-bg pd-40 mb-8">
<p class="text-16 white-clr">hsl(203, 15%, 47%) - Light Grey Color</p>
</div>
</div>
<figure class="mb-32">
<pre class="mb-32">
<code class="language-html">
<div class="dark-grey-clr-bg"> div. Dark Grey Color Background </div>
<div class="grey-clr-bg"> div. Grey Color Background </div>
<div class="light-grey-clr-bg"> div. Light Grey Color Background </div>
</code>
</pre>
</figure>
<!-- Text colors -->
<div class="mb-32">
<h2 class="mb-24">2. Text colors</h2>
<p class="text-18 dark-grey-clr-txt mb-8">p. Here’s an dark grey color text example.</p>
<p class="text-18 grey-clr-txt mb-8">p. Here’s an grey color text example.</p>
<p class="text-18 light-grey-clr-txt mb-8">p. Here’s an light grey color text example.</p>
</div>
<figure class="mb-32">
<pre class="mb-32">
<code class="language-html">
<p class="dark-grey-clr-txt"> p. Dark grey color text </p>
<p class="grey-clr-txt"> p. Grey color text </p>
<p class="light-grey-clr-txt"> p. Light grey color text </p>
</code>
</pre>
</figure>
</div>
<script src="assets/plugins/prism.js"></script>
</body>
</html>