aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..2acc435
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,22 @@
+// tailwind.config.js
+module.exports = {
+ content: [
+ "./src/**/*.{js,ts,jsx,tsx}",
+ "./components/**/*.{js,ts,jsx,tsx}"
+ ],
+ plugins: [],
+
+ theme: {
+ extend: {
+ keyframes: {
+ glow: {
+ '0%, 100%': { background: 'rgba(0, 255, 255, 0.0)' },
+ '50%': { background: 'rgba(0, 255, 255, 0.6)' },
+ },
+ },
+ animation: {
+ glow: 'glow 2s ease-in-out infinite',
+ },
+ },
+ },
+}