feature: Digitization Workstation UI

This commit is contained in:
voltsrage
2026-06-27 12:15:43 +08:00
parent 88e70b3dbe
commit e22d33b654
55 changed files with 6411 additions and 143 deletions
+34
View File
@@ -0,0 +1,34 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: '#eff6ff',
100: '#dbeafe',
500: '#3b82f6',
600: '#2563eb',
700: '#1d4ed8',
},
clinical: {
safe: '#16a34a',
warning: '#eab308',
danger: '#dc2626',
},
},
spacing: {
// Rule of 8 — prefer these multiples of 8px in component spacing
18: '4.5rem',
22: '5.5rem',
},
screens: {
xs: '480px',
},
},
},
plugins: [],
}