-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypography-colors.html
36 lines (32 loc) · 1.65 KB
/
typography-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
<!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>DS in CSS</title>
<link rel="stylesheet" type="text/css" href="./css/styles.css">
</head>
<body class="cb-baseline">
<main class="cb-main">
<h1 class="cb-h4 cb-bolder"><a class="cb-link" href="./index.html">DS in CSS</a></h1>
<h2 class="cb-h5 cb-margin-bottom-large">
Typography colors
</h2>
<p class="cb-text-color-primary">Default text color is provided by the <code class="cb-inline-code">.baseline</code>
class, and can also be explicitly applied with <code class="cb-inline-code">.cb-text-color-primary</code>.</p>
<p class="cb-text-color-primary-alt">Primary-alt text color can be applied with <code
class="cb-inline-code">.cb-text-color-primary-alt</code>.</p>
<p class="cb-text-color-secondary">Secondary text color can be applied with <code
class="cb-inline-code">.cb-text-color-secondary</code>.</p>
<p class="cb-color-primary">Primary theme color can be applied with <code
class="cb-inline-code">.cb-color-primary</code>.</p>
<p class="cb-color-secondary">Secondary theme color can be applied with <code
class="cb-inline-code">.cb-color-secondary</code>.</p>
<p class="cb-color-error">Error theme color can be applied with <code class="cb-inline-code">.cb-color-error</code>.
</p>
<p class="cb-color-nightshade-600">You can also apply any of the theme colors with a class like <code
class="cb-inline-code">.cb-color-nightshade-600</code>.</p>
</main>
</body>
</html>