aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..978aa9e
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,16 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+ content: ["./src/**/*.{js,jsx,ts,tsx,mdx}"],
+ theme: {
+ extend: {
+ colors: {
+ text: "#000000",
+ background: "#E3DFF2",
+ primary: "#7df9ff",
+ secondary: "#9723c9",
+ accent: "#fffF00",
+ },
+ },
+ },
+ plugins: [],
+};