Initial Commit

This commit is contained in:
Moritz Utcke
2023-03-25 15:13:42 +04:00
parent e04f68a395
commit dcbdf0e8d0
105 changed files with 3772 additions and 0 deletions

18
tailwind.config.cjs Normal file
View File

@@ -0,0 +1,18 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
primary: "rgb(255, 125, 38)",
secondary: "rgb(68, 79, 148)",
"gray-primary": "rgb(146, 151, 153)",
bg: "white",
"status-error": "red",
"status-success": "green",
},
},
},
darkMode: "class",
plugins: [],
};