feat: init commit

This commit is contained in:
vilm3r
2022-06-22 19:10:05 -05:00
parent e612c6a693
commit c1b41b5ebd
41 changed files with 17652 additions and 0 deletions

18
tailwind.config.js Normal file
View File

@@ -0,0 +1,18 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./views/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'custom-green-light': '#6b9370',
'custom-green-dark': '#4D6A51',
'custom-black': '#3C3744'
}
}
},
plugins: [],
}