Skip to content

Commit 739d3c6

Browse files
committed
Replace screenshot with logo
1 parent bf7e8f3 commit 739d3c6

File tree

5 files changed

+69
-2
lines changed

5 files changed

+69
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A web-based editor and converter to manage design tokens, visualize them in a tree structure, and export them as CSS variables or JSON format.
44

5-
![Design Tokens App Screenshot](./engramma.png)
5+
![Engramma](./logo.png)
66

77
## License
88

engramma.png

-264 KB
Binary file not shown.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/>
1111
<meta property="og:type" content="website" />
1212
<meta property="og:url" content="https://engramma.dev/" />
13-
<meta property="og:image" content="./engramma.png" />
13+
<meta property="og:image" content="./logo.png" />
1414
<meta name="twitter:card" content="summary_large_image" />
1515
<link rel="stylesheet" href="./src/app.css" />
1616
<!-- Privacy-friendly analytics by Plausible -->

logo.html

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<style>
2+
.logo {
3+
font-family: Inter, sans-serif;
4+
text-align: center;
5+
background-color: #1e1e1e;
6+
padding: 15% 0;
7+
}
8+
9+
.logo-name {
10+
font-size: 200px;
11+
font-weight: bold;
12+
text-shadow:
13+
-2px -2px #ff0000,
14+
2px 2px #00ffff;
15+
color: #ffeeff;
16+
display: grid;
17+
margin-bottom: 4%;
18+
--top-left: 35%;
19+
--top-right: 50%;
20+
--bottom-left: 75%;
21+
--bottom-right: 65%;
22+
}
23+
24+
.logo-name-top {
25+
grid-column: 1 / 1;
26+
grid-row: 1 / 1;
27+
translate: -2px 0;
28+
clip-path: polygon(0 0, 100% 0, 100% var(--top-right), 0 var(--top-left));
29+
}
30+
31+
.logo-name-middle {
32+
grid-column: 1 / 1;
33+
grid-row: 1 / 1;
34+
translate: -10px 0;
35+
clip-path: polygon(
36+
0 calc(var(--top-left) + 1%),
37+
100% calc(var(--top-right) + 1%),
38+
100% calc(var(--bottom-right) - 1%),
39+
0 calc(var(--bottom-left) - 1%)
40+
);
41+
}
42+
43+
.logo-name-bottom {
44+
grid-column: 1 / 1;
45+
grid-row: 1 / 1;
46+
clip-path: polygon(
47+
0 var(--bottom-left),
48+
100% var(--bottom-right),
49+
100% 100%,
50+
0 100%
51+
);
52+
}
53+
54+
.logo-description {
55+
font-size: 50px;
56+
color: #adfcff;
57+
}
58+
</style>
59+
60+
<div class="logo">
61+
<div class="logo-name">
62+
<div class="logo-name-top">Engramma</div>
63+
<div class="logo-name-middle">Engramma</div>
64+
<div class="logo-name-bottom">Engramma</div>
65+
</div>
66+
<div class="logo-description">A home for your design tokens</div>
67+
</div>

logo.png

139 KB
Loading

0 commit comments

Comments
 (0)