first commit

This commit is contained in:
Haruki
2023-08-21 10:25:27 +09:00
commit 40014c5a6a
37 changed files with 3480 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
fontFamily: {
body: ["Josefin Sans", "ui-sans-serif", "system-ui"],
},
extend: {
colors: {
primary: "#8e30eb",
},
},
},
plugins: [],
};