Files
archy/neode-ui/tailwind.config.js
Dorian 2472af790b Enhance audio and visual elements in the UI for improved user experience
- Added a new script in package.json to generate welcome speech audio for enhanced onboarding.
- Updated SplashScreen.vue and OnboardingWrapper.vue to use the new intro background image and poster.
- Modified Dashboard.vue and Login.vue to reflect changes in background images for consistency.
- Removed outdated background images and updated references to ensure a cohesive visual theme.
- Improved tap-to-start feature with new text and logo in SplashScreen.vue for better engagement.
- Enhanced audio playback functionality in useLoginSounds.ts to include welcome speech.
2026-02-18 08:18:14 +00:00

45 lines
1.1 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ['Avenir Next', 'system-ui', 'sans-serif'],
mono: ['Courier New', 'monospace'],
archipelago: ['Montserrat', 'sans-serif'],
},
backdropBlur: {
'glass': '18px',
'glass-strong': '24px',
},
colors: {
'glass-dark': 'rgba(0, 0, 0, 0.35)',
'glass-darker': 'rgba(0, 0, 0, 0.6)',
'glass-border': 'rgba(255, 255, 255, 0.18)',
'glass-highlight': 'rgba(255, 255, 255, 0.22)',
},
boxShadow: {
'glass': '0 8px 24px rgba(0, 0, 0, 0.45)',
'glass-sm': '0 6px 18px rgba(0, 0, 0, 0.35)',
'glass-inset': 'inset 0 1px 0 rgba(255, 255, 255, 0.22)',
},
spacing: {
// 4px grid system
'1': '4px',
'2': '8px',
'3': '12px',
'4': '16px',
'5': '20px',
'6': '24px',
'7': '28px',
'8': '32px',
},
},
},
plugins: [],
}