Skip to content

Instantly share code, notes, and snippets.

View Blerkk's full-sized avatar
😳
warm: how do bunnies meow :3

Blerkk

😳
warm: how do bunnies meow :3
View GitHub Profile
@Blerkk
Blerkk / hwid
Last active May 12, 2023 22:42
032E02B4-0499-0531-0606-6F0700080009
var body = document.body,
r = document.querySelector('#r'),
g = document.querySelector('#g'),
b = document.querySelector('#b'),
r_out = document.querySelector('#r_out'),
g_out = document.querySelector('#g_out'),
b_out = document.querySelector('#b_out'),
hex_out = document.querySelector('#hex');
function setColor(){
*,*:before,*:after{
box-sizing:border-box;
margin:0;
padding:0;
/*transition*/
-webkit-transition:.25s ease-in-out;
-moz-transition:.25s ease-in-out;
-o-transition:.25s ease-in-out;
transition:.25s ease-in-out;
outline:none;
html,
body {
display: flex;
min-height: 100%;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: sans-serif;
}