change hexcodes

This commit is contained in:
Hexaitos 2024-11-05 21:05:35 +01:00
parent 3ae1d9c033
commit d3ec6ddd55
6 changed files with 42 additions and 42 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -37,10 +37,10 @@
<div></div> <div></div>
</div> </div>
<div class="hex-code-col-1"> <div class="hex-code-col-1">
<span>#2E2A1E</span> <span>#2b2623</span>
<span>#CB9E4F</span> <span>#db9f47</span>
<span>#994F2C</span> <span>#ae4e26</span>
<span>#90331C</span> <span>#a72f14</span>
</div> </div>
<span class="colour-heading">Eyes</span> <span class="colour-heading">Eyes</span>
<div class="colour-col-2"> <div class="colour-col-2">
@ -49,9 +49,9 @@
<div></div> <div></div>
</div> </div>
<div class="hex-code-col-1"> <div class="hex-code-col-1">
<span>#FFFFFF</span> <span>#ffffff</span>
<span>#233443</span> <span>#133042</span>
<span>#2E2A1E</span> <span>#2b2623</span>
</div> </div>
<span class="colour-heading">Wings</span> <span class="colour-heading">Wings</span>
<div class="colour-col-3"> <div class="colour-col-3">
@ -61,10 +61,10 @@
<div></div> <div></div>
</div> </div>
<div class="hex-code-col-1"> <div class="hex-code-col-1">
<span>#BCB4AC</span> <span>#c0b6ad</span>
<span>#9B9186</span> <span>#9f9387</span>
<span>#2E2A1E</span> <span>#2b2623</span>
<span>#794721</span> <span>#894518</span>
</div> </div>
</section> </section>

View File

@ -4,7 +4,7 @@
<url> <url>
<loc>https://hexaitos.com/art.html</loc> <loc>https://hexaitos.com/art.html</loc>
<lastmod>2024-11-05T20:54:25+01:00</lastmod> <lastmod>2024-11-05T21:05:31+01:00</lastmod>
<changefreq>monthly</changefreq> <changefreq>monthly</changefreq>
<priority>0.3</priority> <priority>0.3</priority>
@ -13,7 +13,7 @@
<url> <url>
<loc>https://hexaitos.com/blog.html</loc> <loc>https://hexaitos.com/blog.html</loc>
<lastmod>2024-11-05T20:54:25+01:00</lastmod> <lastmod>2024-11-05T21:05:31+01:00</lastmod>
<changefreq>monthly</changefreq> <changefreq>monthly</changefreq>
<priority>0.3</priority> <priority>0.3</priority>
@ -22,7 +22,7 @@
<url> <url>
<loc>https://hexaitos.com/contact.html</loc> <loc>https://hexaitos.com/contact.html</loc>
<lastmod>2024-11-05T20:54:25+01:00</lastmod> <lastmod>2024-11-05T21:05:31+01:00</lastmod>
<changefreq>monthly</changefreq> <changefreq>monthly</changefreq>
<priority>0.3</priority> <priority>0.3</priority>
@ -31,7 +31,7 @@
<url> <url>
<loc>https://hexaitos.com/</loc> <loc>https://hexaitos.com/</loc>
<lastmod>2024-11-05T20:54:25+01:00</lastmod> <lastmod>2024-11-05T21:05:31+01:00</lastmod>
<changefreq>monthly</changefreq> <changefreq>monthly</changefreq>
<priority>0.3</priority> <priority>0.3</priority>
@ -40,7 +40,7 @@
<url> <url>
<loc>https://hexaitos.com/refsheet.html</loc> <loc>https://hexaitos.com/refsheet.html</loc>
<lastmod>2024-11-05T20:54:25+01:00</lastmod> <lastmod>2024-11-05T21:05:31+01:00</lastmod>
<changefreq>monthly</changefreq> <changefreq>monthly</changefreq>
<priority>0.3</priority> <priority>0.3</priority>
@ -49,7 +49,7 @@
<url> <url>
<loc>https://hexaitos.com/sitemap.xml</loc> <loc>https://hexaitos.com/sitemap.xml</loc>
<lastmod>2024-11-05T20:54:25+01:00</lastmod> <lastmod>2024-11-05T21:05:31+01:00</lastmod>
<changefreq>monthly</changefreq> <changefreq>monthly</changefreq>
<priority>0.3</priority> <priority>0.3</priority>
@ -58,7 +58,7 @@
<url> <url>
<loc>https://hexaitos.com/assets/css/styles.css</loc> <loc>https://hexaitos.com/assets/css/styles.css</loc>
<lastmod>2024-11-05T20:54:25+01:00</lastmod> <lastmod>2024-11-05T21:05:31+01:00</lastmod>
<changefreq>monthly</changefreq> <changefreq>monthly</changefreq>
<priority>0.3</priority> <priority>0.3</priority>

View File

@ -357,23 +357,23 @@ div[class*="colour-col-"] {
} }
&[class*="1"] { &[class*="1"] {
:nth-child(1) { background-color: #2E2A1E; } :nth-child(1) { background-color: #2b2623; }
:nth-child(2) { background-color: #CB9E4F; } :nth-child(2) { background-color: #db9f47; }
:nth-child(3) { background-color: #994F2C; } :nth-child(3) { background-color: #ae4e26; }
:nth-child(4) { background-color: #90331C; } :nth-child(4) { background-color: #a72f14; }
} }
&[class*="2"] { &[class*="2"] {
:nth-child(1) { background-color: #FFFFFF; } :nth-child(1) { background-color: #ffffff; }
:nth-child(2) { background-color: #233443; } :nth-child(2) { background-color: #133042; }
:nth-child(3) { background-color: #2E2A1E; } :nth-child(3) { background-color: #2b2623; }
} }
&[class*="3"] { &[class*="3"] {
:nth-child(1) { background-color: #BCB4AC; } :nth-child(1) { background-color: #c0b6ad; }
:nth-child(2) { background-color: #9B9186; } :nth-child(2) { background-color: #9f9387; }
:nth-child(3) { background-color: #2E2A1E; } :nth-child(3) { background-color: #2b2623; }
:nth-child(4) { background-color: #794721; } :nth-child(4) { background-color: #894518; }
} }
} }

View File

@ -20,10 +20,10 @@ Drawn by [FaultyArts](https://faultyarts.carrd.co/). Click the image to enlargen
<div></div> <div></div>
</div> </div>
<div class="hex-code-col-1"> <div class="hex-code-col-1">
<span>#2E2A1E</span> <span>#2b2623</span>
<span>#CB9E4F</span> <span>#db9f47</span>
<span>#994F2C</span> <span>#ae4e26</span>
<span>#90331C</span> <span>#a72f14</span>
</div> </div>
<span class="colour-heading">Eyes</span> <span class="colour-heading">Eyes</span>
<div class="colour-col-2"> <div class="colour-col-2">
@ -32,9 +32,9 @@ Drawn by [FaultyArts](https://faultyarts.carrd.co/). Click the image to enlargen
<div></div> <div></div>
</div> </div>
<div class="hex-code-col-1"> <div class="hex-code-col-1">
<span>#FFFFFF</span> <span>#ffffff</span>
<span>#233443</span> <span>#133042</span>
<span>#2E2A1E</span> <span>#2b2623</span>
</div> </div>
<span class="colour-heading">Wings</span> <span class="colour-heading">Wings</span>
<div class="colour-col-3"> <div class="colour-col-3">
@ -44,9 +44,9 @@ Drawn by [FaultyArts](https://faultyarts.carrd.co/). Click the image to enlargen
<div></div> <div></div>
</div> </div>
<div class="hex-code-col-1"> <div class="hex-code-col-1">
<span>#BCB4AC</span> <span>#c0b6ad</span>
<span>#9B9186</span> <span>#9f9387</span>
<span>#2E2A1E</span> <span>#2b2623</span>
<span>#794721</span> <span>#894518</span>
</div> </div>
</section> </section>