Halfway done

This commit is contained in:
2024-10-19 22:45:27 +01:00
parent 47f56cd473
commit f2e9d5844b
10632 changed files with 1720635 additions and 0 deletions

25
tailwind.config.js Normal file
View File

@@ -0,0 +1,25 @@
import colors from "tailwindcss/colors"
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
secondary: {
DEFAULT: colors.neutral[200],
hover: colors.neutral[300],
border: colors.neutral[400],
text: colors.neutral[500],
dark: colors.neutral[800],
["dark-hover"]: colors.neutral[900]
}
}
},
},
plugins: [],
}