feat: bootstrap temporserv project scaffold
Add the initial project blueprint, Go backend skeleton, frontend app shell, database schema draft, and local development/deployment files.
This commit is contained in:
25
apps/web/tailwind.config.js
Normal file
25
apps/web/tailwind.config.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: ['./index.html', './src/**/*.{ts,tsx}'],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
ink: '#dce6f2',
|
||||
canvas: '#09111c',
|
||||
panel: '#111c2c',
|
||||
accent: '#f29f67',
|
||||
accentSoft: '#f6c8a6',
|
||||
line: '#223047'
|
||||
},
|
||||
boxShadow: {
|
||||
glow: '0 24px 80px rgba(242, 159, 103, 0.18)'
|
||||
},
|
||||
fontFamily: {
|
||||
display: ['Segoe UI', 'sans-serif'],
|
||||
body: ['Segoe UI', 'sans-serif']
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: []
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user