feat(frontend): integrate tailwind pipeline and update templates
This commit is contained in:
25
tailwind.config.js
Normal file
25
tailwind.config.js
Normal file
@ -0,0 +1,25 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
'./templates/**/*.html',
|
||||
'./apps/**/templates/**/*.html',
|
||||
'./apps/**/*.py'
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
brand: {
|
||||
50: '#eef6ff',
|
||||
100: '#d8e8ff',
|
||||
600: '#1d63dd',
|
||||
700: '#184fb3',
|
||||
900: '#142746'
|
||||
}
|
||||
},
|
||||
boxShadow: {
|
||||
soft: '0 8px 24px -14px rgba(16, 35, 64, 0.35)'
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: []
|
||||
};
|
||||
Reference in New Issue
Block a user