Initial commit
This commit is contained in:
commit
904a0b0bbf
26 changed files with 4847 additions and 0 deletions
24
tailwind.config.js
Normal file
24
tailwind.config.js
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
module.exports = {
|
||||
theme: {
|
||||
colors: {
|
||||
primary: '#2AAAE1',
|
||||
gray: '#666666',
|
||||
secondary: '#064871',
|
||||
white: '#FFFFFF',
|
||||
},
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: [
|
||||
"proxima-nova",
|
||||
"Proxima Nova",
|
||||
"Open Sans",
|
||||
"Gill Sans MT",
|
||||
"Gill Sans",
|
||||
'Corbel',
|
||||
'Arial',
|
||||
'sans-serif',
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in a new issue