first commit
This commit is contained in:
24
apps/frontend/tailwind.config.js
Normal file
24
apps/frontend/tailwind.config.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
'./index.html',
|
||||
'./src/**/*.{vue,js,ts,jsx,tsx}'
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif']
|
||||
},
|
||||
colors: {
|
||||
brand: {
|
||||
indigo: '#6366F1',
|
||||
blue: '#3B82F6'
|
||||
}
|
||||
},
|
||||
boxShadow: {
|
||||
card: '0 20px 40px -20px rgba(99,102,241,0.35)'
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: []
|
||||
};
|
||||
Reference in New Issue
Block a user