22 lines
502 B
JavaScript
22 lines
502 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}", // Esto le dice que busque en toda la carpeta src
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: "#0049ab",
|
|
secondary: "rgb(59, 59, 59)",
|
|
accent: "#000000",
|
|
"brand-dark": "#020617",
|
|
"black" : "#000000",
|
|
},
|
|
fontFamily: {
|
|
raleway: ["Raleway", "sans-serif"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |