Run the below script on your console.
webpackChunkdiscord_app.push([[''],{},e=>{m=[];for(let c in e.c)m.push(e.c[c])}]);m.map(g=>g.exports?.default?.getCurrentUser).filter(Boolean)[0]().nsfwAllowed = true
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Smooth Modal Animation with Scroll Effects</title> | |
<link | |
rel="stylesheet" | |
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/ress.min.css" | |
/> |
Run the below script on your console.
webpackChunkdiscord_app.push([[''],{},e=>{m=[];for(let c in e.c)m.push(e.c[c])}]);m.map(g=>g.exports?.default?.getCurrentUser).filter(Boolean)[0]().nsfwAllowed = true
// https://davidpiesse.github.io/tailwind-md-colours/ | |
// | |
//Notes | |
// | |
//All colours are generated from Material Design Docs | |
//Colours have a base, a set of shades (50-900) accent colours | |
//In addition a companion set of contrast colours are included for colouring text / icons | |
// Example usage | |
// class="w-full bg-red-600 text-red-600-constrast" |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
</head> | |
<body> | |
<button id="add">ADD</button> |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
<style> | |
*, |
import { defineConfig } from "vite"; | |
import { vitePlugin } from "@stylify/unplugin"; | |
import react from "@vitejs/plugin-react"; | |
const stylifyPlugin = vitePlugin({ | |
transformIncludeFilter: (id) => | |
id.endsWith("js") || | |
id.endsWith("ts") || | |
id.endsWith("tsx") || | |
id.endsWith("jsx"), |
const red = { | |
50: "#ffebee", | |
100: "#ffcdd2", | |
200: "#ef9a9a", | |
300: "#e57373", | |
400: "#ef5350", | |
500: "#f44336", | |
600: "#e53935", | |
700: "#d32f2f", | |
800: "#c62828", |
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
*, | |
*::before, | |
*::after { | |
box-sizing: border-box; | |
} |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
<style> | |
*, |
const canvas = document.createElement("canvas"); | |
const ctx = canvas.getContext("2d"); | |
canvas.width = window.innerWidth; | |
canvas.height = window.innerHeight; | |
canvas.style.position = "fixed"; | |
canvas.style.top = 0; | |
canvas.style.left = 0; | |
canvas.style.backgroundColor = "#000"; |