Initial commit
This commit is contained in:
commit
bd3fce7e64
25 changed files with 888 additions and 0 deletions
assets
33
assets/tailwind.config.js
Normal file
33
assets/tailwind.config.js
Normal file
|
@ -0,0 +1,33 @@
|
|||
module.exports = {
|
||||
content: ["./templates/**/*.twig"],
|
||||
theme: {
|
||||
colors: {
|
||||
blue: {
|
||||
100: '#8cc4df',
|
||||
200: '#2aaae1',
|
||||
800: '#064871',
|
||||
},
|
||||
gray: '#666666',
|
||||
secondary: '#064871',
|
||||
white: '#FFFFFF',
|
||||
red: 'lightcoral',
|
||||
},
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: [
|
||||
"proxima-nova",
|
||||
"Proxima Nova",
|
||||
"Open Sans",
|
||||
"Gill Sans MT",
|
||||
"Gill Sans",
|
||||
'Corbel',
|
||||
'Arial',
|
||||
'sans-serif',
|
||||
]
|
||||
},
|
||||
spacing: {
|
||||
18: '4.5rem',
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue