Update README.md
Browse files
README.md
CHANGED
@@ -16,7 +16,55 @@ tags:
|
|
16 |
|
17 |
- [ ] 12M million dataset finetune (planned)
|
18 |
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
## Example Outputs
|
22 |
|
|
|
16 |
|
17 |
- [ ] 12M million dataset finetune (planned)
|
18 |
|
19 |
+
<style>
|
20 |
+
.logo {
|
21 |
+
width: 600px;
|
22 |
+
margin: 20px auto;
|
23 |
+
display: block;
|
24 |
+
}
|
25 |
+
|
26 |
+
.logo-text {
|
27 |
+
font-family: 'Arial', sans-serif;
|
28 |
+
font-weight: bold;
|
29 |
+
fill: none;
|
30 |
+
stroke: #00ffff;
|
31 |
+
stroke-width: 2;
|
32 |
+
stroke-linejoin: round;
|
33 |
+
stroke-dasharray: 1000;
|
34 |
+
stroke-dashoffset: 1000;
|
35 |
+
animation: draw 3s ease forwards, glow 2s ease-in-out infinite alternate;
|
36 |
+
}
|
37 |
+
|
38 |
+
@keyframes draw {
|
39 |
+
to {
|
40 |
+
stroke-dashoffset: 0;
|
41 |
+
}
|
42 |
+
}
|
43 |
+
|
44 |
+
@keyframes glow {
|
45 |
+
from {
|
46 |
+
filter: drop-shadow(0 0 2px #00ffff) drop-shadow(0 0 4px #00ffff);
|
47 |
+
}
|
48 |
+
to {
|
49 |
+
filter: drop-shadow(0 0 4px #00ffff) drop-shadow(0 0 8px #00ffff);
|
50 |
+
}
|
51 |
+
}
|
52 |
+
</style>
|
53 |
+
|
54 |
+
<svg class="logo" viewBox="0 0 800 100" xmlns="http://www.w3.org/2000/svg">
|
55 |
+
<defs>
|
56 |
+
<linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="0%">
|
57 |
+
<stop offset="0%" style="stop-color:#00ffff;stop-opacity:1" />
|
58 |
+
<stop offset="100%" style="stop-color:#0099ff;stop-opacity:1" />
|
59 |
+
</linearGradient>
|
60 |
+
</defs>
|
61 |
+
<text x="50%" y="50%" text-anchor="middle" class="logo-text" dominant-baseline="middle" font-size="60px">
|
62 |
+
Proteus<tspan fill="url(#gradient)" stroke="none">Σ</tspan>igma
|
63 |
+
</text>
|
64 |
+
<text x="50%" y="75%" text-anchor="middle" class="logo-text" dominant-baseline="middle" font-size="20px" stroke-width="1">
|
65 |
+
STABLE DIFFUSION XL
|
66 |
+
</text>
|
67 |
+
</svg>
|
68 |
|
69 |
## Example Outputs
|
70 |
|