Skip to content

Commit 0f4df00

Browse files
authored
Merge pull request #725 from hyperware-ai/release-candidate
release candidate 1.2.1
2 parents f1f057f + 3441d1c commit 0f4df00

38 files changed

+1752
-994
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hyperdrive_lib"
33
authors = ["Sybil Technologies AG"]
4-
version = "1.2.0"
4+
version = "1.2.1"
55
edition = "2021"
66
description = "A general-purpose sovereign cloud computing platform"
77
homepage = "https://hyperware.ai"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img width="300" alt="Hyperware" src="https://github.com/user-attachments/assets/3e29e04f-3f33-48c3-ae7c-977084197cca">
2+
<img width="300" alt="Hyperware" src="https://github.com/user-attachments/assets/dd781692-e691-4393-82be-cfb27e129103">
33
<br />
44
<img src="https://img.shields.io/twitter/follow/Hyperware_ai">
55

css/hyperware.css

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
--stone: #353534;
1313
--black: #111111;
1414
--black-light: #11111188;
15-
--black-xlight: #11111144;
15+
--black-xlight: #11111111;
1616
--tasteful-dark: var(--black);
1717
--white: #f6f6f6;
1818
--white-light: #f6f6f688;
19-
--white-xlight: #f6f6f644;
19+
--white-xlight: #f6f6f611;
2020
--magenta: #bf1363;
2121
--orange: #dd6e42;
2222
--off-white: var(--white);
@@ -27,9 +27,13 @@
2727
--primary-light: var(--neon-green-light);
2828
--primary-xlight: var(--neon-green-xlight);
2929
--secondary-color: var(--iris);
30+
--secondary-light: var(--iris-light);
31+
--secondary-xlight: var(--iris-xlight);
3032
--tertiary-color: var(--orange);
3133
--quaternary-color: var(--magenta);
3234

35+
--link-color: light-dark(var(--secondary-color), var(--primary-color));
36+
3337
--font-family-main: 'Space Grotesk', monospace;
3438

3539
/* Add modern CSS variables */
@@ -44,6 +48,22 @@
4448
--button-border-width: 2px;
4549
}
4650

51+
.bg-secondary {
52+
background-color: var(--secondary-color);
53+
}
54+
55+
.bg-primary {
56+
background-color: var(--primary-color);
57+
}
58+
59+
.text-secondary {
60+
color: var(--secondary-color);
61+
}
62+
63+
.text-primary {
64+
color: var(--primary-color);
65+
}
66+
4767
* {
4868
box-sizing: border-box;
4969
margin: 0;
@@ -58,7 +78,6 @@
5878

5979
html {
6080
font-size: 16px;
61-
6281
background-color: light-dark(var(--white), var(--black));
6382
color: light-dark(var(--off-black), var(--off-white));
6483
}
@@ -79,7 +98,7 @@ body {
7998

8099
a {
81100
text-decoration: none;
82-
color: var(--primary-color);
101+
color: var(--link-color);
83102
}
84103

85104
form {
@@ -190,14 +209,27 @@ button.secondary,
190209
.button.secondary {
191210
background-color: var(--iris);
192211
color: var(--white);
193-
transition: all 0.1s ease-in-out;
212+
}
213+
214+
button.secondary:hover,
215+
.button.secondary:hover {
216+
background-color: light-dark(var(--white), var(--black));
217+
color: var(--iris);
218+
border-color: var(--iris);
194219
}
195220

196221
button.tertiary,
197222
.button.tertiary {
198223
background-color: var(--orange);
199224
}
200225

226+
button.tertiary:hover,
227+
.button.tertiary:hover {
228+
background-color: light-dark(var(--white), var(--black));
229+
color: var(--orange);
230+
border-color: var(--orange);
231+
}
232+
201233
button.thin,
202234
.button.thin {
203235
font-weight: normal;
@@ -212,8 +244,8 @@ button.icon,
212244
background-color: transparent;
213245
padding: 0.5rem;
214246
border-radius: 999px;
215-
border: 2px solid var(--white-xlight);
216-
color: var(--white);
247+
border: light-dark(2px solid var(--black-xlight), 2px solid var(--white-xlight));
248+
color: light-dark(var(--black), var(--white));
217249
}
218250

219251
button.icon:hover,
@@ -570,4 +602,4 @@ td:nth-child(even) {
570602
[id$="-page"] {
571603
align-items: center;
572604
justify-content: center;
573-
}
605+
}

hyperdrive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hyperdrive"
33
authors = ["Sybil Technologies AG"]
4-
version = "1.2.0"
4+
version = "1.2.1"
55
edition = "2021"
66
description = "A general-purpose sovereign cloud computing platform"
77
homepage = "https://hyperware.ai"

0 commit comments

Comments
 (0)