luis-medeiros/tailwind.config.js
Filipe Medeiros e1d07fa6af hey
2022-08-21 17:13:43 +01:00

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: [],
};