dataautogpt3 commited on
Commit
25522bf
·
verified ·
1 Parent(s): 1a60e3d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -78
README.md CHANGED
@@ -17,108 +17,64 @@ tags:
17
  - [ ] 12M million dataset finetune (planned)
18
 
19
  <style>
20
- .logo {
21
  width: 600px;
22
  margin: 20px auto;
23
- display: block;
24
- background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(137,27,171,0.2) 100%);
25
  padding: 20px;
 
 
26
  }
27
 
28
- .logo-text-main {
29
- font-family: 'Arial Black', sans-serif;
30
- fill: none;
31
- stroke-width: 2;
32
- stroke-linejoin: round;
 
 
 
 
 
 
 
 
33
  animation: glow 2s ease-in-out infinite alternate;
34
  }
35
 
36
- .logo-text-outline {
37
- stroke: #ff00ff;
38
- stroke-width: 8;
39
- stroke-linejoin: round;
40
- fill: none;
41
- }
42
-
43
- .logo-text-fill {
44
- fill: url(#retroGradient);
45
- stroke: none;
46
- }
47
-
48
- .logo-text-shadow {
49
- fill: none;
50
- stroke: #00ffff;
51
- stroke-width: 2;
52
- filter: blur(3px);
53
  }
54
 
55
  .subtitle {
56
  font-family: 'Arial', sans-serif;
57
- fill: #00ffff;
58
- font-size: 20px;
59
- filter: drop-shadow(0 0 2px #00ffff);
 
 
60
  }
61
 
62
  @keyframes glow {
63
  from {
64
  filter: drop-shadow(0 0 2px #ff00ff)
65
- drop-shadow(0 0 4px #ff00ff)
66
- drop-shadow(0 0 6px #00ffff);
67
  }
68
  to {
69
  filter: drop-shadow(0 0 4px #ff00ff)
70
- drop-shadow(0 0 8px #ff00ff)
71
- drop-shadow(0 0 12px #00ffff);
72
  }
73
  }
74
  </style>
75
 
76
- <svg class="logo" viewBox="0 0 800 200" xmlns="http://www.w3.org/2000/svg">
77
- <defs>
78
- <linearGradient id="retroGradient" x1="0%" y1="0%" x2="0%" y2="100%">
79
- <stop offset="0%" style="stop-color:#ff00ff;stop-opacity:1" />
80
- <stop offset="50%" style="stop-color:#ff71ce;stop-opacity:1" />
81
- <stop offset="100%" style="stop-color:#b967ff;stop-opacity:1" />
82
- </linearGradient>
83
- <filter id="chrome">
84
- <feGaussianBlur in="SourceAlpha" stdDeviation="2" result="blur" />
85
- <feOffset in="blur" dx="2" dy="2" result="offsetBlur" />
86
- <feMerge>
87
- <feMergeNode in="offsetBlur" />
88
- <feMergeNode in="SourceGraphic" />
89
- </feMerge>
90
- </filter>
91
- </defs>
92
-
93
- <!-- Main text with effects -->
94
- <g transform="translate(400,100)" text-anchor="middle">
95
- <!-- Shadow layer -->
96
- <text class="logo-text-main logo-text-shadow"
97
- x="-100" y="0" font-size="80px">Proteus</text>
98
-
99
- <!-- Outline layer -->
100
- <text class="logo-text-main logo-text-outline"
101
- x="-100" y="0" font-size="80px">Proteus</text>
102
-
103
- <!-- Gradient fill layer -->
104
- <text class="logo-text-main logo-text-fill"
105
- x="-100" y="0" font-size="80px">Proteus</text>
106
-
107
- <!-- Sigma symbol -->
108
- <text x="120" y="0"
109
- font-size="80px"
110
- fill="#00ffff"
111
- filter="url(#chrome)">Σ</text>
112
-
113
- <!-- Subtitle -->
114
- <text class="subtitle" y="40">STABLE DIFFUSION XL</text>
115
- </g>
116
-
117
- <!-- Grid effect -->
118
- <path d="M0 180 L800 180" stroke="#ff00ff" stroke-width="1" opacity="0.5"/>
119
- <path d="M0 185 L800 185" stroke="#00ffff" stroke-width="1" opacity="0.3"/>
120
- <path d="M0 190 L800 190" stroke="#ff00ff" stroke-width="1" opacity="0.2"/>
121
- </svg>
122
 
123
  ## Example Outputs
124
 
 
17
  - [ ] 12M million dataset finetune (planned)
18
 
19
  <style>
20
+ .logo-container {
21
  width: 600px;
22
  margin: 20px auto;
 
 
23
  padding: 20px;
24
+ background: linear-gradient(180deg, #000000 0%, #1a0033 100%);
25
+ border-radius: 10px;
26
  }
27
 
28
+ .retro-text {
29
+ font-family: 'Arial Black', 'Helvetica', sans-serif;
30
+ font-size: 72px;
31
+ text-align: center;
32
+ margin: 0;
33
+ padding: 20px;
34
+ background: linear-gradient(to bottom, #ff71ce 0%, #b967ff 50%, #01cdfe 100%);
35
+ -webkit-background-clip: text;
36
+ background-clip: text;
37
+ -webkit-text-fill-color: transparent;
38
+ text-shadow:
39
+ 3px 3px 0 #ff00ff,
40
+ -3px -3px 0 #00ffff;
41
  animation: glow 2s ease-in-out infinite alternate;
42
  }
43
 
44
+ .sigma {
45
+ color: #00ffff;
46
+ text-shadow:
47
+ 2px 2px 0 #ff00ff,
48
+ -2px -2px 0 #00ffff;
 
 
 
 
 
 
 
 
 
 
 
 
49
  }
50
 
51
  .subtitle {
52
  font-family: 'Arial', sans-serif;
53
+ font-size: 24px;
54
+ text-align: center;
55
+ color: #00ffff;
56
+ margin-top: 10px;
57
+ text-shadow: 2px 2px 4px rgba(0, 255, 255, 0.5);
58
  }
59
 
60
  @keyframes glow {
61
  from {
62
  filter: drop-shadow(0 0 2px #ff00ff)
63
+ drop-shadow(0 0 4px #ff00ff);
 
64
  }
65
  to {
66
  filter: drop-shadow(0 0 4px #ff00ff)
67
+ drop-shadow(0 0 8px #ff00ff);
 
68
  }
69
  }
70
  </style>
71
 
72
+ <div class="logo-container">
73
+ <h1 class="retro-text">
74
+ Proteus<span class="sigma">Σ</span>
75
+ </h1>
76
+ <div class="subtitle">STABLE DIFFUSION XL</div>
77
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
  ## Example Outputs
80