Improve styling of app

This commit is contained in:
Peter Stockings
2026-03-09 21:50:53 +11:00
parent ab23bf6a9e
commit de66dc5fd8
9 changed files with 708 additions and 139 deletions

View File

@@ -2,7 +2,25 @@
module.exports = {
content: ["./app/templates/**/*.html"],
theme: {
extend: {},
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
colors: {
primary: {
50: '#f0fdfa',
100: '#ccfbf1',
200: '#99f6e4',
300: '#5eead4',
400: '#2dd4bf',
500: '#14b8a6', // Teal MedTech feeling
600: '#0d9488',
700: '#0f766e',
800: '#115e59',
900: '#134e4a',
},
},
},
},
plugins: [],
};