-
Notifications
You must be signed in to change notification settings - Fork 1
/
nahua-ref-sheet.html
121 lines (121 loc) · 4.67 KB
/
nahua-ref-sheet.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE HTML>
<html>
<head>
<title>Nahua Ref Sheet</title>
<meta property="og:image" content="https://cdn.spax.zone/nahua-ref-sheet.png" type="image/png">
<meta property="twitter:card" content="summary_large_image">
<link rel="stylesheet" href="/css/experimental.css" type="text/css">
<style>
#colors {
display: flex;
flex-direction: column;
margin-top: 10px;
gap: 10px;
}
#colors div {
border-radius: 4px;
}
#colors > div {
display: inherit;
gap: inherit;
}
#colors > div > div {
width: 100%;
aspect-ratio: 1/1;
cursor: pointer;
}
#ref {
width: 75%;
max-width: revert;
}
#ref img {
margin-bottom: 10px;
}
#refcontainer {
position: relative;
}
#ayo {
position: absolute;
width: 8%;
height: 13%;
left: 27%;
bottom: 36%;
cursor: not-allowed;
}
#clarifications-header {
display: inline-block;
margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
#clarifications-header {
display: none;
}
}
</style>
</head>
<body>
<article class="art" id="ref">
<span id="clarifications-header">!! Scroll down for clarifications !!</span>
<div id="refcontainer">
<img src="/images/art/nahua-bananas-refsheet.png" alt="Reference sheet for Nahua (Na-hoo-wa), a light blue axolotl with dark blue, yellow, and orange accents. She's shown from the front (both clothed and nude) and back; she looks cheery in the clothed picture and flustered in the nude one, which is censored with an eye-popping smiley. She's wearing shorts, kneesocks, a tanktop with an up arrow on it, and headphones. She is 5 feet 3 inches (160 centimeters) tall, 19 years old, and uses she/they pronouns. Design notes: Always wears headphones or ear-coverings (she looks weird without them); doesn't wear furs (they stick uncomfortably to the mucus on her skin); yellow eyelash-things are optional, but iconic; as an amphibian, she doesn't have breasts; hair is made out of kelp or something, IDK, go wild; has minor transformative powers (lore).">
<div id="ayo" title="ayo what you doin over there"></div>
</div>
Artist: 1LikeBananas<br>
Alt text: <a href="https://goatygoats.com/">Goaty Goats</a><br>
<a href="https://cdn.spax.zone/nahua-ref-sheet.png">High Res Version</a>
</article>
<article>
Extra clarifications:<br>
1. She has four fingers, not three.<br>
2. Yes, her gills (or <a href="https://en.wikipedia.org/wiki/External_gills">rami</a>) are stylized like that.<br>
3. Lore reasons for the minor transformative powers will be explained when I'm bothered to write it.<br>
4. Her outfit doesn't need to be the one in the ref! She does tend to prefer more open/breathable clothing though.<br>
5. She goes for a tomboy-ish look.<br>
<br>
If you need any other clarifications, feel free to reach out and ask me on discord!<br>
<br>
Oh, and you don't need my permission to draw her.
</article>
<article>
If you got javascript enabled<noscript> (you don't)</noscript>, you can copy the hex colors by clicking on its respective square:<br>
<div id="colors">
<div>
<div style="background-color:#9ae0ff;"></div>
<div style="background-color:#cbfffe;"></div>
<div style="background-color:#264755;"></div>
</div>
<div>
<div style="background-color:#ffc759;"></div>
<div style="background-color:#fffbe2;"></div>
<div style="background-color:#ff7676;"></div>
<div style="background-color:#e3d2b0;"></div>
<div style="background-color:#590100;"></div>
</div>
</div>
</article>
<article class="short">
Last updated: November 16th, 2024<br>
</article>
<article class="short">
(And <a href="./index.html">click here</a> to see the main page!)
</article>
<script>
async function writeClipboardText(text) {
try {
await navigator.clipboard.writeText(text);
} catch (error) {
console.error(error.message);
}
}
for (const square of [...document.querySelectorAll(`#colors div[style]`)]) {
square.addEventListener("click", () => {
const styles = square.getAttribute("style");
const bgcolor = styles.match(/background-color:\s*#([a-f0-9]{3}|[a-f0-9]{6})\b/);
if (bgcolor) {
writeClipboardText(bgcolor[1]);
}
});
}
</script>
</body>
</html>