This commit is contained in:
commit
75f4febcf9
45 changed files with 9206 additions and 0 deletions
21
tailwind.config.js
Normal file
21
tailwind.config.js
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
module.exports = {
|
||||
content: ["./src/vite/index.html", "./src/vite/**/*.{vue,js,jsx}"],
|
||||
theme: {
|
||||
minHeight: {
|
||||
70: "70vh",
|
||||
},
|
||||
extend: {},
|
||||
backgroundColor: (theme) => ({
|
||||
...theme("colors"),
|
||||
primary: "#3490dc",
|
||||
secondary: "#ffed4a",
|
||||
danger: "#e3342f",
|
||||
black: "#121212",
|
||||
gray: "#1c1c1c",
|
||||
}),
|
||||
},
|
||||
variants: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue