Skip to content

Commit 1412ef9

Browse files
authored
Merge pull request #181 from JaclynCodes/copilot/add-soft-systems-palette-html
Add Soft Systems Palette HTML reference
2 parents c6e62d6 + 2a16a90 commit 1412ef9

File tree

2 files changed

+83
-2
lines changed

2 files changed

+83
-2
lines changed

.github/workflows/iteration-status-emails.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ jobs:
6969
grep "^[0-9]*:-[[:space:]]*✋" || true)
7070
7171
# Count tasks
72-
RUNNER_COUNT=$(echo "$RUNNER_TASKS" | grep -c . || echo "0")
73-
HAND_COUNT=$(echo "$HAND_TASKS" | grep -c . || echo "0")
72+
RUNNER_COUNT=$(echo "$RUNNER_TASKS" | grep -c . || true)
73+
HAND_COUNT=$(echo "$HAND_TASKS" | grep -c . || true)
7474
7575
echo "Found $RUNNER_COUNT tasks in progress"
7676
echo "Found $HAND_COUNT blocked tasks"

soft-systems-palette.html

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Soft Systems Palette</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
margin: 0;
11+
padding: 20px;
12+
background-color: #FFFBF9; /* Base */
13+
color: #3A3535; /* Slate */
14+
}
15+
16+
.swatch-container {
17+
display: flex;
18+
flex-wrap: wrap;
19+
gap: 20px;
20+
justify-content: center;
21+
}
22+
23+
.swatch {
24+
width: 180px;
25+
height: 180px;
26+
border-radius: 10px;
27+
display: flex;
28+
align-items: center;
29+
justify-content: center;
30+
flex-direction: column;
31+
color: #FFFFFF;
32+
font-size: 16px;
33+
font-weight: bold;
34+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
35+
}
36+
37+
.swatch span {
38+
font-size: 12px;
39+
font-weight: normal;
40+
}
41+
42+
/* Colors */
43+
.swatch.base { background-color: #FFFBF9; color: #3A3535; }
44+
.swatch.slate { background-color: #3A3535; }
45+
.swatch.boldnbloom { background-color: #FF9B59; }
46+
.swatch.mute { background-color: #EDA7A7; }
47+
.swatch.deep { background-color: #14367C; }
48+
.swatch.alien { background-color: #D6FFAF; color: #3A3535; }
49+
</style>
50+
</head>
51+
<body>
52+
<h1>Soft Systems Palette</h1>
53+
<p>A thoughtfully designed palette for Symphonic-Joules projects. Each shade plays a unique role in creating a harmonious, visually appealing design.</p>
54+
<div class="swatch-container">
55+
<div class="swatch base">
56+
#Base
57+
<span>#FFFBF9</span>
58+
</div>
59+
<div class="swatch slate">
60+
#Slate
61+
<span>#3A3535</span>
62+
</div>
63+
<div class="swatch boldnbloom">
64+
#BoldnBloom
65+
<span>#FF9B59</span>
66+
</div>
67+
<div class="swatch mute">
68+
#Mute
69+
<span>#EDA7A7</span>
70+
</div>
71+
<div class="swatch deep">
72+
#Deep
73+
<span>#14367C</span>
74+
</div>
75+
<div class="swatch alien">
76+
#Alien
77+
<span>#D6FFAF</span>
78+
</div>
79+
</div>
80+
</body>
81+
</html>

0 commit comments

Comments
 (0)