24 lines
560 B
JavaScript
24 lines
560 B
JavaScript
module.exports = {
|
|
content: ["./src/**/*.{html,js}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
manrope: ["Manrope", "sans-serif"],
|
|
syne: ["Syne Tactile", "cursive"],
|
|
},
|
|
colors: {
|
|
green: {
|
|
DEFAULT: "#009966",
|
|
},
|
|
blue: {
|
|
DEFAULT: "#267CFD",
|
|
},
|
|
orange: {
|
|
DEFAULT: "#EC8E00",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|