rityak commited on
Commit
27a085c
Β·
verified Β·
1 Parent(s): 87188e3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +262 -207
README.md CHANGED
@@ -11,298 +11,344 @@ tags:
11
  - merge
12
  license: openrail++
13
  ---
 
14
  <style>
15
- .models-container {
16
- display: grid;
17
- grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
18
- gap: 1.5rem;
19
- padding: 1rem;
 
 
 
 
 
20
  }
21
 
22
- .model-card {
23
- border-radius: 8px;
24
- padding: 1.5rem;
25
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
26
- transition: transform 0.2s ease, box-shadow 0.2s ease;
27
- border: 1px solid var(--background-modifier-border, #ddd);
28
  }
29
 
30
- .model-card:hover {
31
- transform: translateY(-5px);
32
- box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
33
  }
34
 
35
- .model-header {
36
- margin-top: 0;
37
- margin-bottom: 1rem;
38
- padding-bottom: 0.5rem;
39
- border-bottom: 1px solid var(--background-modifier-border, #ddd);
40
- color: var(--text-title, #333);
41
  }
42
 
43
- .model-description {
44
- margin: 1rem 0;
 
 
 
 
 
 
 
45
  line-height: 1.5;
46
- color: var(--text-normal, #666);
 
47
  }
48
 
49
- .features-list {
50
  list-style: none;
51
  padding: 0;
52
- margin: 1rem 0;
 
 
53
  }
54
 
55
- .features-list li {
56
  display: flex;
57
  align-items: center;
58
- margin-bottom: 0.5rem;
59
- font-size: 0.95rem;
60
- color: var(--text-normal, #555);
61
  }
62
 
63
- .features-list .icon {
64
- margin-right: 0.6rem;
65
- font-size: 1.1rem;
66
  }
67
 
68
- .badge-list {
69
  list-style: none;
70
  padding: 0;
71
- margin: 1.5rem 0 0;
72
  display: flex;
73
  flex-wrap: wrap;
74
  gap: 0.5rem;
75
  }
76
 
77
- .badge-list li {
78
  margin: 0;
79
  }
80
 
81
- .badge-btn {
82
  display: inline-flex;
83
  align-items: center;
84
  height: 30px;
85
- padding: 0 10px;
86
- font-size: 13px;
87
  font-weight: 500;
88
- color: var(--text-normal, #333);
89
- background: var(--interactive-normal, #e9ecef);
90
  text-decoration: none;
91
  border-radius: 4px;
92
  white-space: nowrap;
93
- transition: opacity 0.2s, transform 0.1s;
94
- border: 1px solid var(--background-modifier-border, #ced4da);
 
 
95
  }
96
 
97
- .badge-btn .btn-icon {
98
  width: 14px;
99
  height: 14px;
100
- margin-right: 5px;
101
  }
102
 
103
- .badge-btn:hover {
104
- opacity: 0.85;
105
  transform: translateY(-1px);
106
- background: var(--interactive-hover, #dee2e6);
107
  }
108
 
109
- .badge-btn.civitai {
110
- background-color: #2975fa20;
111
  border-color: #2975fa40;
 
112
  color: #2975fa;
113
  }
114
 
115
- .badge-btn.hf {
116
- background-color: #ff660020;
117
  border-color: #ff660040;
 
118
  color: #ff6600;
119
  }
120
 
121
- .model-base {
122
- font-weight: bold;
123
- color: var(--text-accent, #007bff);
 
 
 
 
 
124
  }
125
 
126
- .model-version {
127
- background: var(--background-modifier-border, #ced4da);
128
- color: var(--text-normal, #495057);
129
- padding: 0.15rem 0.5rem;
130
- border-radius: 4px;
131
- font-size: 0.85rem;
132
- font-weight: 600;
133
- display: inline-block;
134
- margin-left: 0.5rem;
135
  }
136
 
137
- .model-type {
138
- font-style: italic;
139
- color: var(--text-muted, #888);
 
 
 
 
140
  font-size: 0.9rem;
141
- margin-top: 0.25rem;
142
- display: block;
143
  }
144
 
145
- .repo-links {
146
- display: flex;
147
- flex-wrap: wrap;
148
- gap: 1rem;
149
- justify-content: center;
150
- margin: 2rem 0;
151
- padding: 1.5rem;
152
- background: var(--background-secondary, #f8f9fa);
153
- border-radius: 8px;
154
  }
155
 
156
- .repo-link {
157
- display: inline-flex;
 
 
 
 
 
 
158
  align-items: center;
159
- padding: 0.5rem 1rem;
160
- background: var(--interactive-normal, #e9ecef);
161
- color: var(--text-normal, #333);
162
- text-decoration: none;
163
- border-radius: 6px;
164
- font-weight: 500;
165
- transition: all 0.2s;
166
- border: 1px solid var(--background-modifier-border, #ced4da);
167
  }
168
 
169
- .repo-link:hover {
170
- background: var(--interactive-hover, #dee2e6);
171
- transform: translateY(-1px);
 
 
 
 
 
172
  }
173
 
174
- .repo-link.hf {
175
- background-color: #ff660020;
176
- border-color: #ff660040;
177
- color: #ff6600;
 
 
178
  }
179
 
180
- .repo-link.civitai {
181
- background-color: #2975fa20;
182
- border-color: #2975fa40;
183
- color: #2975fa;
184
  }
185
 
186
- @media (max-width: 768px) {
187
- .models-container {
188
- grid-template-columns: 1fr;
189
- }
190
-
191
- .repo-links {
192
- flex-direction: column;
193
- }
194
- }
195
- </style>
196
- <style>
197
- .container {
198
- display: flex;
199
- gap: 2rem;
200
- align-items: flex-start;
201
- }
202
- .image-wrapper,
203
- .details {
204
- flex: 1 1 50%;
205
- }
206
- .image-wrapper {
207
- display: flex;
208
- justify-content: center;
209
- align-items: center;
210
- }
211
- .model-image {
212
- width: 100%;
213
- max-width: 500px;
214
- min-width: 300px;
215
- border-radius: 8px;
216
- box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
217
- }
218
- .details h1 {
219
- margin-top: 0;
220
- font-size: 2rem;
221
- color: #fff;
222
- }
223
- .details .description {
224
- margin: 0.5rem 0 1.5rem;
225
- line-height: 1.5;
226
- color: #ccc;
227
  }
 
228
  .features-list {
229
  list-style: none;
230
  padding: 0;
231
- margin: 0 0 1.5rem;
 
 
232
  }
 
233
  .features-list li {
234
  display: flex;
235
  align-items: center;
236
- margin-bottom: 0.5rem;
237
- font-size: 1rem;
238
- color: #fff;
239
  }
 
240
  .features-list .icon {
241
- margin-right: 0.6rem;
242
- font-size: 1.2rem;
243
  }
 
244
  .badge-list {
245
  list-style: none;
246
  padding: 0;
247
  margin: 0;
248
  display: flex;
249
  flex-wrap: wrap;
250
- row-gap: 0.25rem;
251
- column-gap: 0.5rem;
252
  }
 
253
  .badge-list li {
254
  margin: 0;
255
  }
 
256
  .badge-btn {
257
  display: inline-flex;
258
  align-items: center;
259
- height: 28px;
260
- padding: 0 10px;
261
- font-size: 14px;
262
  font-weight: 500;
263
- color: #fff;
264
- text-decoration: none;
265
  border-radius: 4px;
266
- white-space: nowrap;
267
- transition: opacity 0.2s, transform 0.1s;
 
 
 
268
  }
 
269
  .badge-btn .btn-icon {
270
- width: 16px;
271
- height: 16px;
272
- margin-right: 6px;
273
  }
 
274
  .badge-btn:hover {
275
- opacity: 0.85;
276
  transform: translateY(-1px);
277
  }
 
278
  .badge-btn.civitai {
279
- background-color: #2975fa8d;
 
 
280
  }
 
281
  .badge-btn.hf {
282
- background-color: #ff66008d;
 
 
283
  }
284
- @media (max-width: 700px) {
285
- .container {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
286
  flex-direction: column;
287
- align-items: center;
288
- }
289
- .image-wrapper,
290
- .details {
291
- flex: unset;
292
- width: 100%;
293
  }
294
- .model-image {
295
- width: 90%;
296
- max-width: 500px;
297
- min-width: auto;
298
- margin-bottom: 1rem;
299
  }
300
  }
 
 
 
 
 
 
 
 
 
301
  </style>
302
- <div class="container">
303
- <div class="image-wrapper">
 
304
  <video
305
- class="model-image"
306
  controls
307
  autoplay
308
  loop
@@ -320,44 +366,45 @@ license: openrail++
320
  Your browser does not support the video tag.
321
  </video>
322
  </div>
323
- <div class="details">
324
- <h1>RealCore Illustrious 1.0</h1>
325
- <p class="description">
 
326
  <strong>RealCore Illustrious</strong> is a merged <strong>Illustrious</strong> checkpoint built from multiple models and LoRAs,
327
  designed to deliver stunning results in <em>realistic</em> and <em>photo-realistic</em> styles.
328
  Fully supports <strong>NSFW</strong> generation and integrates seamlessly with <strong>LCM</strong> acceleration.
329
  </p>
330
- <ul class="features-list">
331
  <li><span class="icon">πŸ“·</span>Realistic & photo-realistic rendering</li>
332
  <li><span class="icon">πŸ”€</span>Complex multi-model merge with LoRAs</li>
333
  <li><span class="icon">⚑</span>Excellent <strong>LCM</strong> compatibility</li>
334
  <li><span class="icon">πŸ”“</span>NSFW supported</li>
335
  </ul>
336
- <ul class="badge-list">
337
- <li>
338
  <a
339
  href="https://civitai.com/models/2128436"
340
  target="_blank"
341
- class="badge-btn civitai"
342
  >
343
  <img
344
  src="https://civitai.com/favicon-blue.ico"
345
  alt="CivitAI"
346
- class="btn-icon"
347
  />
348
  View on CivitAI
349
  </a>
350
  </li>
351
- <li>
352
  <a
353
  href="https://huggingface.co/rityak/RealCore_Illustrious/resolve/main/RealCore_Illustrious_v10.safetensors?download=true"
354
  target="_blank"
355
- class="badge-btn hf"
356
  >
357
  <img
358
  src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg"
359
  alt="Hugging Face"
360
- class="btn-icon"
361
  />
362
  Download RealCore Illustrious 1.0
363
  </a>
@@ -370,18 +417,21 @@ license: openrail++
370
 
371
  <div class="models-container">
372
  <div class="model-card">
373
- <h3 class="model-header">RealCore Illustrious <span class="model-version">1.0</span></h3>
374
- <span class="model-type">SDXL Merge | Base: <span class="model-base">Illustrious</span></span>
 
 
 
375
  <p class="model-description">
376
  A merged <strong>Illustrious</strong> checkpoint built from multiple models and LoRAs,
377
  designed to deliver stunning results in <em>realistic</em> and <em>photo-realistic</em> styles.
378
  Fully supports <strong>NSFW</strong> generation and integrates seamlessly with <strong>LCM</strong> acceleration.
379
  </p>
380
  <ul class="features-list">
381
- <li><span class="icon">πŸ“·</span> Realistic & photo-realistic rendering</li>
382
- <li><span class="icon">πŸ”€</span> Complex multi-model merge with LoRAs</li>
383
- <li><span class="icon">⚑</span> Excellent <strong>LCM</strong> compatibility</li>
384
- <li><span class="icon">πŸ”“</span> NSFW supported</li>
385
  </ul>
386
  <ul class="badge-list">
387
  <li>
@@ -400,18 +450,21 @@ license: openrail++
400
  </div>
401
 
402
  <div class="model-card">
403
- <h3 class="model-header">RealCore Pony <span class="model-version">1.0</span></h3>
404
- <span class="model-type">SDXL Merge | Base: <span class="model-base">Pony_Diffusion_V6_XL</span></span>
 
 
 
405
  <p class="model-description">
406
  A merged <strong>Pony Diffusion V6</strong> checkpoint built from multiple models and LoRAs,
407
  designed to deliver stunning results in <em>realistic</em> styles.
408
  Fully supports <strong>NSFW</strong> generation and integrates seamlessly with <strong>LCM</strong> acceleration.
409
  </p>
410
  <ul class="features-list">
411
- <li><span class="icon">πŸ“·</span> Realistic & photo rendering</li>
412
- <li><span class="icon">πŸ”€</span> Complex multi-model merge with LoRAs</li>
413
- <li><span class="icon">⚑</span> Excellent <strong>LCM</strong> compatibility</li>
414
- <li><span class="icon">πŸ”“</span> NSFW supported</li>
415
  </ul>
416
  <ul class="badge-list">
417
  <li>
@@ -430,18 +483,21 @@ license: openrail++
430
  </div>
431
 
432
  <div class="model-card">
433
- <h3 class="model-header">RealCore XL <span class="model-version">1.0</span></h3>
434
- <span class="model-type">SDXL Merge | Base: <span class="model-base">SDXL 1.0</span></span>
 
 
 
435
  <p class="model-description">
436
  A merged <strong>Stable Diffusion XL</strong> checkpoint built from multiple models and LoRAs,
437
  designed to deliver stunning results in <em>realistic</em> and <em>amateur photo</em> styles.
438
  Fully supports <strong>NSFW</strong> generation and integrates seamlessly with <strong>LCM</strong> acceleration.
439
  </p>
440
  <ul class="features-list">
441
- <li><span class="icon">πŸ“·</span> Realistic & amateur photo rendering</li>
442
- <li><span class="icon">πŸ”€</span> Complex multi-model merge with LoRAs</li>
443
- <li><span class="icon">⚑</span> Excellent <strong>LCM</strong> compatibility</li>
444
- <li><span class="icon">πŸ”“</span> NSFW supported</li>
445
  </ul>
446
  <ul class="badge-list">
447
  <li>
@@ -469,11 +525,10 @@ license: openrail++
469
  <a href="https://civitai.com/models/2077774" target="_blank" class="repo-link civitai">RealCore XL CivitAI</a>
470
  </div>
471
 
472
- <div style="text-align: center; margin-top: 2rem; padding: 1rem; color: var(--text-muted, #6c757d); font-style: italic;">
473
  All models are optimized for ComfyUI + LCM and support NSFW generation.
474
  </div>
475
 
476
- ---
477
 
478
  ## 🧩 Model Overview
479
 
 
11
  - merge
12
  license: openrail++
13
  ---
14
+
15
  <style>
16
+ /* ===== Hero section ===== */
17
+
18
+ .rc-hero {
19
+ display: flex;
20
+ gap: 1.75rem;
21
+ align-items: flex-start;
22
+ justify-content: center;
23
+ max-width: 1100px;
24
+ margin: 0 auto 2.25rem;
25
+ flex-wrap: wrap;
26
  }
27
 
28
+ .rc-hero-media,
29
+ .rc-hero-details {
30
+ flex: 1 1 320px;
31
+ min-width: 0;
 
 
32
  }
33
 
34
+ .rc-hero-media {
35
+ display: flex;
36
+ justify-content: center;
37
  }
38
 
39
+ .rc-hero-video {
40
+ width: 100%;
41
+ max-width: 460px;
42
+ border-radius: 8px;
43
+ box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
44
+ overflow: hidden;
45
  }
46
 
47
+ .rc-hero-title {
48
+ margin: 0 0 0.6rem;
49
+ font-size: 1.9rem;
50
+ line-height: 1.2;
51
+ color: var(--text-title, inherit);
52
+ }
53
+
54
+ .rc-hero-description {
55
+ margin: 0 0 1.1rem;
56
  line-height: 1.5;
57
+ font-size: 0.95rem;
58
+ color: var(--text-normal, inherit);
59
  }
60
 
61
+ .rc-hero-features {
62
  list-style: none;
63
  padding: 0;
64
+ margin: 0 0 1.2rem;
65
+ font-size: 0.95rem;
66
+ color: var(--text-normal, inherit);
67
  }
68
 
69
+ .rc-hero-features li {
70
  display: flex;
71
  align-items: center;
72
+ gap: 0.4rem;
73
+ margin-bottom: 0.35rem;
 
74
  }
75
 
76
+ .rc-hero-features .icon {
77
+ font-size: 1.05rem;
78
+ opacity: 0.9;
79
  }
80
 
81
+ .rc-badge-list {
82
  list-style: none;
83
  padding: 0;
84
+ margin: 0;
85
  display: flex;
86
  flex-wrap: wrap;
87
  gap: 0.5rem;
88
  }
89
 
90
+ .rc-badge-item {
91
  margin: 0;
92
  }
93
 
94
+ .rc-badge-btn {
95
  display: inline-flex;
96
  align-items: center;
97
  height: 30px;
98
+ padding: 0 11px;
99
+ font-size: 0.85rem;
100
  font-weight: 500;
 
 
101
  text-decoration: none;
102
  border-radius: 4px;
103
  white-space: nowrap;
104
+ transition: opacity 0.18s ease, transform 0.1s ease, background-color 0.18s ease;
105
+ border: 1px solid transparent;
106
+ background-color: transparent;
107
+ color: var(--text-normal, inherit);
108
  }
109
 
110
+ .rc-badge-btn-icon {
111
  width: 14px;
112
  height: 14px;
113
+ margin-right: 6px;
114
  }
115
 
116
+ .rc-badge-btn:hover {
117
+ opacity: 0.9;
118
  transform: translateY(-1px);
 
119
  }
120
 
121
+ .rc-badge-btn.civitai {
 
122
  border-color: #2975fa40;
123
+ background-color: #2975fa1a;
124
  color: #2975fa;
125
  }
126
 
127
+ .rc-badge-btn.hf {
 
128
  border-color: #ff660040;
129
+ background-color: #ff66001a;
130
  color: #ff6600;
131
  }
132
 
133
+ @media (max-width: 700px) {
134
+ .rc-hero {
135
+ margin-bottom: 1.75rem;
136
+ }
137
+
138
+ .rc-hero-video {
139
+ max-width: 100%;
140
+ }
141
  }
142
 
143
+ /* ===== Model cards (ΠΊΠΎΠΌΠΏΠ°ΠΊΡ‚Π½Ρ‹Π΅) ===== */
144
+
145
+ .models-container {
146
+ display: grid;
147
+ grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
148
+ gap: 1rem;
149
+ padding: 0;
150
+ margin: 0 0 1.75rem;
 
151
  }
152
 
153
+ .model-card {
154
+ border-radius: 8px;
155
+ padding: 0.9rem 1rem;
156
+ border: 1px solid var(--background-modifier-border, #dedede);
157
+ background-color: var(--background-secondary, transparent);
158
+ box-shadow: none;
159
+ transition: border-color 0.18s ease, transform 0.1s ease;
160
  font-size: 0.9rem;
 
 
161
  }
162
 
163
+ .model-card:hover {
164
+ transform: translateY(-2px);
165
+ border-color: var(--text-accent, #2975fa80);
 
 
 
 
 
 
166
  }
167
 
168
+ .model-header {
169
+ margin: 0 0 0.35rem;
170
+ padding-bottom: 0.25rem;
171
+ border-bottom: 1px solid var(--background-modifier-border, #e0e0e0);
172
+ font-size: 0.95rem;
173
+ font-weight: 600;
174
+ color: var(--text-title, inherit);
175
+ display: flex;
176
  align-items: center;
177
+ justify-content: space-between;
178
+ gap: 0.5rem;
 
 
 
 
 
 
179
  }
180
 
181
+ .model-version {
182
+ background: var(--background-modifier-border, #e0e0e0);
183
+ color: var(--text-normal, #555);
184
+ padding: 0.05rem 0.45rem;
185
+ border-radius: 999px;
186
+ font-size: 0.75rem;
187
+ font-weight: 600;
188
+ flex-shrink: 0;
189
  }
190
 
191
+ .model-type {
192
+ font-style: normal;
193
+ font-size: 0.78rem;
194
+ color: var(--text-muted, #777);
195
+ margin-bottom: 0.55rem;
196
+ display: block;
197
  }
198
 
199
+ .model-base {
200
+ font-weight: 600;
201
+ color: var(--text-accent, #2975fa);
 
202
  }
203
 
204
+ .model-description {
205
+ margin: 0 0 0.7rem;
206
+ line-height: 1.4;
207
+ color: var(--text-normal, inherit);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  }
209
+
210
  .features-list {
211
  list-style: none;
212
  padding: 0;
213
+ margin: 0 0 0.75rem;
214
+ font-size: 0.85rem;
215
+ color: var(--text-normal, inherit);
216
  }
217
+
218
  .features-list li {
219
  display: flex;
220
  align-items: center;
221
+ gap: 0.35rem;
222
+ margin-bottom: 0.3rem;
 
223
  }
224
+
225
  .features-list .icon {
226
+ font-size: 0.95rem;
227
+ opacity: 0.9;
228
  }
229
+
230
  .badge-list {
231
  list-style: none;
232
  padding: 0;
233
  margin: 0;
234
  display: flex;
235
  flex-wrap: wrap;
236
+ gap: 0.4rem;
 
237
  }
238
+
239
  .badge-list li {
240
  margin: 0;
241
  }
242
+
243
  .badge-btn {
244
  display: inline-flex;
245
  align-items: center;
246
+ padding: 0 9px;
247
+ height: 26px;
248
+ font-size: 0.78rem;
249
  font-weight: 500;
 
 
250
  border-radius: 4px;
251
+ text-decoration: none;
252
+ border: 1px solid transparent;
253
+ background-color: transparent;
254
+ transition: opacity 0.18s ease, transform 0.1s ease, background-color 0.18s ease;
255
+ color: var(--text-normal, inherit);
256
  }
257
+
258
  .badge-btn .btn-icon {
259
+ width: 13px;
260
+ height: 13px;
261
+ margin-right: 5px;
262
  }
263
+
264
  .badge-btn:hover {
265
+ opacity: 0.9;
266
  transform: translateY(-1px);
267
  }
268
+
269
  .badge-btn.civitai {
270
+ border-color: #2975fa40;
271
+ background-color: #2975fa12;
272
+ color: #2975fa;
273
  }
274
+
275
  .badge-btn.hf {
276
+ border-color: #ff660040;
277
+ background-color: #ff660012;
278
+ color: #ff6600;
279
  }
280
+
281
+ /* ===== Repo links block ===== */
282
+
283
+ .repo-links {
284
+ display: flex;
285
+ flex-wrap: wrap;
286
+ gap: 0.6rem;
287
+ justify-content: center;
288
+ margin: 1.75rem auto 0;
289
+ padding: 1rem 1.25rem;
290
+ max-width: 750px;
291
+ border-radius: 10px;
292
+ background: var(--background-secondary, rgba(0, 0, 0, 0.02));
293
+ border: 1px solid var(--background-modifier-border, #e0e0e0);
294
+ }
295
+
296
+ .repo-link {
297
+ display: inline-flex;
298
+ align-items: center;
299
+ padding: 0.45rem 0.9rem;
300
+ border-radius: 6px;
301
+ font-size: 0.82rem;
302
+ font-weight: 500;
303
+ text-decoration: none;
304
+ transition: opacity 0.18s ease, transform 0.1s ease, background-color 0.18s ease;
305
+ border: 1px solid transparent;
306
+ color: var(--text-normal, inherit);
307
+ background-color: transparent;
308
+ }
309
+
310
+ .repo-link:hover {
311
+ opacity: 0.9;
312
+ transform: translateY(-1px);
313
+ }
314
+
315
+ .repo-link.hf {
316
+ border-color: #ff660040;
317
+ background-color: #ff660012;
318
+ color: #ff6600;
319
+ }
320
+
321
+ .repo-link.civitai {
322
+ border-color: #2975fa40;
323
+ background-color: #2975fa12;
324
+ color: #2975fa;
325
+ }
326
+
327
+ @media (max-width: 768px) {
328
+ .repo-links {
329
  flex-direction: column;
330
+ align-items: stretch;
 
 
 
 
 
331
  }
332
+
333
+ .repo-link {
334
+ justify-content: center;
 
 
335
  }
336
  }
337
+
338
+ .rc-footer-note {
339
+ text-align: center;
340
+ margin-top: 1.75rem;
341
+ padding: 0.75rem;
342
+ font-size: 0.8rem;
343
+ color: var(--text-muted, #6c757d);
344
+ font-style: italic;
345
+ }
346
  </style>
347
+
348
+ <div class="rc-hero">
349
+ <div class="rc-hero-media">
350
  <video
351
+ class="rc-hero-video"
352
  controls
353
  autoplay
354
  loop
 
366
  Your browser does not support the video tag.
367
  </video>
368
  </div>
369
+
370
+ <div class="rc-hero-details">
371
+ <h1 class="rc-hero-title">RealCore Illustrious 1.0</h1>
372
+ <p class="rc-hero-description">
373
  <strong>RealCore Illustrious</strong> is a merged <strong>Illustrious</strong> checkpoint built from multiple models and LoRAs,
374
  designed to deliver stunning results in <em>realistic</em> and <em>photo-realistic</em> styles.
375
  Fully supports <strong>NSFW</strong> generation and integrates seamlessly with <strong>LCM</strong> acceleration.
376
  </p>
377
+ <ul class="rc-hero-features">
378
  <li><span class="icon">πŸ“·</span>Realistic & photo-realistic rendering</li>
379
  <li><span class="icon">πŸ”€</span>Complex multi-model merge with LoRAs</li>
380
  <li><span class="icon">⚑</span>Excellent <strong>LCM</strong> compatibility</li>
381
  <li><span class="icon">πŸ”“</span>NSFW supported</li>
382
  </ul>
383
+ <ul class="rc-badge-list">
384
+ <li class="rc-badge-item">
385
  <a
386
  href="https://civitai.com/models/2128436"
387
  target="_blank"
388
+ class="rc-badge-btn civitai"
389
  >
390
  <img
391
  src="https://civitai.com/favicon-blue.ico"
392
  alt="CivitAI"
393
+ class="rc-badge-btn-icon"
394
  />
395
  View on CivitAI
396
  </a>
397
  </li>
398
+ <li class="rc-badge-item">
399
  <a
400
  href="https://huggingface.co/rityak/RealCore_Illustrious/resolve/main/RealCore_Illustrious_v10.safetensors?download=true"
401
  target="_blank"
402
+ class="rc-badge-btn hf"
403
  >
404
  <img
405
  src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg"
406
  alt="Hugging Face"
407
+ class="rc-badge-btn-icon"
408
  />
409
  Download RealCore Illustrious 1.0
410
  </a>
 
417
 
418
  <div class="models-container">
419
  <div class="model-card">
420
+ <h3 class="model-header">
421
+ <span>RealCore Illustrious</span>
422
+ <span class="model-version">1.0</span>
423
+ </h3>
424
+ <span class="model-type">SDXL Merge&nbsp;| Base: <span class="model-base">Illustrious</span></span>
425
  <p class="model-description">
426
  A merged <strong>Illustrious</strong> checkpoint built from multiple models and LoRAs,
427
  designed to deliver stunning results in <em>realistic</em> and <em>photo-realistic</em> styles.
428
  Fully supports <strong>NSFW</strong> generation and integrates seamlessly with <strong>LCM</strong> acceleration.
429
  </p>
430
  <ul class="features-list">
431
+ <li><span class="icon">πŸ“·</span>Realistic & photo-realistic rendering</li>
432
+ <li><span class="icon">πŸ”€</span>Complex multi-model merge with LoRAs</li>
433
+ <li><span class="icon">⚑</span>Excellent <strong>LCM</strong> compatibility</li>
434
+ <li><span class="icon">πŸ”“</span>NSFW supported</li>
435
  </ul>
436
  <ul class="badge-list">
437
  <li>
 
450
  </div>
451
 
452
  <div class="model-card">
453
+ <h3 class="model-header">
454
+ <span>RealCore Pony</span>
455
+ <span class="model-version">1.0</span>
456
+ </h3>
457
+ <span class="model-type">SDXL Merge&nbsp;| Base: <span class="model-base">Pony_Diffusion_V6_XL</span></span>
458
  <p class="model-description">
459
  A merged <strong>Pony Diffusion V6</strong> checkpoint built from multiple models and LoRAs,
460
  designed to deliver stunning results in <em>realistic</em> styles.
461
  Fully supports <strong>NSFW</strong> generation and integrates seamlessly with <strong>LCM</strong> acceleration.
462
  </p>
463
  <ul class="features-list">
464
+ <li><span class="icon">πŸ“·</span>Realistic & photo rendering</li>
465
+ <li><span class="icon">πŸ”€</span>Complex multi-model merge with LoRAs</li>
466
+ <li><span class="icon">⚑</span>Excellent <strong>LCM</strong> compatibility</li>
467
+ <li><span class="icon">πŸ”“</span>NSFW supported</li>
468
  </ul>
469
  <ul class="badge-list">
470
  <li>
 
483
  </div>
484
 
485
  <div class="model-card">
486
+ <h3 class="model-header">
487
+ <span>RealCore XL</span>
488
+ <span class="model-version">1.0</span>
489
+ </h3>
490
+ <span class="model-type">SDXL Merge&nbsp;| Base: <span class="model-base">SDXL 1.0</span></span>
491
  <p class="model-description">
492
  A merged <strong>Stable Diffusion XL</strong> checkpoint built from multiple models and LoRAs,
493
  designed to deliver stunning results in <em>realistic</em> and <em>amateur photo</em> styles.
494
  Fully supports <strong>NSFW</strong> generation and integrates seamlessly with <strong>LCM</strong> acceleration.
495
  </p>
496
  <ul class="features-list">
497
+ <li><span class="icon">πŸ“·</span>Realistic & amateur photo rendering</li>
498
+ <li><span class="icon">πŸ”€</span>Complex multi-model merge with LoRAs</li>
499
+ <li><span class="icon">⚑</span>Excellent <strong>LCM</strong> compatibility</li>
500
+ <li><span class="icon">πŸ”“</span>NSFW supported</li>
501
  </ul>
502
  <ul class="badge-list">
503
  <li>
 
525
  <a href="https://civitai.com/models/2077774" target="_blank" class="repo-link civitai">RealCore XL CivitAI</a>
526
  </div>
527
 
528
+ <div class="rc-footer-note">
529
  All models are optimized for ComfyUI + LCM and support NSFW generation.
530
  </div>
531
 
 
532
 
533
  ## 🧩 Model Overview
534