aboutsummaryrefslogtreecommitdiff
path: root/frontend/tailwind.config.js
diff options
context:
space:
mode:
authorzwlucas <lucas.fariamo08@gmail.com>2026-05-29 18:57:37 +0000
committerzwlucas <lucas.fariamo08@gmail.com>2026-05-29 18:57:37 +0000
commit6cc0bfd1d79074df790272b8091b1f0226d14283 (patch)
treecab18b0f708cf3b0eaeeeb98e2cf81459365b33e /frontend/tailwind.config.js
downloadyaum-6cc0bfd1d79074df790272b8091b1f0226d14283.tar.gz
yaum-6cc0bfd1d79074df790272b8091b1f0226d14283.zip
feat: upload project
Signed-off-by: zwlucas <lucas.fariamo08@gmail.com>
Diffstat (limited to 'frontend/tailwind.config.js')
-rw-r--r--frontend/tailwind.config.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js
new file mode 100644
index 0000000..d043770
--- /dev/null
+++ b/frontend/tailwind.config.js
@@ -0,0 +1,30 @@
+/** @type {import('tailwindcss').Config} */
+export default {
+ content: ['./src/**/*.{html,js,svelte,ts}'],
+ theme: {
+ extend: {
+ fontFamily: {
+ sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
+ mono: ['JetBrains Mono', 'Fira Code', 'monospace']
+ },
+ colors: {
+ surface: {
+ 50: '#f8fafc',
+ 100: '#0f1117',
+ 200: '#1a1d27',
+ 300: '#242837',
+ 400: '#2e3347',
+ },
+ neon: {
+ green: '#22f06a',
+ red: '#ff4060',
+ amber: '#ffb020',
+ }
+ },
+ animation: {
+ 'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
+ }
+ }
+ },
+ plugins: []
+};