-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolors.html
More file actions
140 lines (128 loc) · 5.88 KB
/
colors.html
File metadata and controls
140 lines (128 loc) · 5.88 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colors | The Forge - Design System</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Lato:900' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Londrina+Sketch&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav id="global-navbar">
<div id="global-navbar-icons">
<a href="index.html"><img src="logo.png" alt="" id="global-navbar-img"></a>
</div>
<div id="global-navbar-links-section">
<a href="index.html" class="global-navbar-links">Home</a>
<a href="colors.html" class="global-navbar-links">Colors</a>
<a href="foundations.html" class="global-navbar-links">Foundations</a>
<a href="components.html" class="global-navbar-links">Components</a>
<a href="utilities.html" class="global-navbar-links">Utilities</a>
</div>
</nav>
</header>
<main class="main-content">
<aside class="sidebar">
<div>
<h4>Color Palette</h4>
<a href="#primary-colors">Primary Colors</a>
<a href="#neutral-colors">Neutral Colors</a>
</div>
</aside>
<section>
<h1>Colors</h1>
<p>The Forge's color palette is designed to be clear, accessible, and versatile, drawing inspiration from the elements of a smithy.</p>
<div class="color-sec" id="primary-colors">
<h2>Primary Colors</h2>
<div class="color-cards">
<div class="color-card">
<div class="color-swatch" style="background-color: #080840;"></div>
<div class="color-info">
<strong>Forge Navy</strong>
<span>#080840</span>
</div>
</div>
<div class="color-card">
<div class="color-swatch" style="background-color: #2a62a5;"></div>
<div class="color-info">
<strong>Steel Blue</strong>
<span>#2a62a5</span>
</div>
</div>
<div class="color-card">
<div class="color-swatch" style="background-color: #6A89A7;"></div>
<div class="color-info">
<strong>Washed Steel</strong>
<span>#6A89A7</span>
</div>
</div>
<div class="color-card">
<div class="color-swatch" style="background-color: #d6e8f4;"></div>
<div class="color-info">
<strong>Steam</strong>
<span>#d6e8f4</span>
</div>
</div>
</div>
</div>
<div class="color-sec" id="neutral-colors">
<h2>Neutral Colors</h2>
<div class="color-cards">
<div class="color-card">
<div class="color-swatch" style="background-color: #FFFFFF;"></div>
<div class="color-info">
<strong>White</strong>
<span>#FFFFFF</span>
</div>
</div>
<div class="color-card">
<div class="color-swatch" style="background-color: #f8f9fa;"></div>
<div class="color-info">
<strong>Smoke</strong>
<span>#f8f9fa</span>
</div>
</div>
<div class="color-card">
<div class="color-swatch" style="background-color: #6c757d;"></div>
<div class="color-info">
<strong>Iron</strong>
<span>#6c757d</span>
</div>
</div>
<div class="color-card">
<div class="color-swatch" style="background-color: #343a40;"></div>
<div class="color-info">
<strong>Charcoal</strong>
<span>#343a40</span>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="quick-links-container">
<h3>Quick Links</h3>
<div class="quick-links">
<a href="index.html">Home</a>
<a href="colors.html">Colors</a>
<a href="foundations.html">Foundations</a>
<a href="components.html">Components</a>
<a href="utilities.html">Utilities</a>
<a href="#" class="back-to-top">Back to Top ↑</a>
</div>
</div>
<div class="trademark">
<p>© 2025 The Forge. A project by skullxcode.</p>
</div>
</footer>
</body>
</html>