This repository has been archived on 2024-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
alfadatizar/tailwind.config.js
2023-07-29 00:01:48 -03:00

36 lines
796 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,liquid,11ty.jsx}"],
theme: {
extend: {
colors: {
blanco: "#fff5e8",
naranja: "#ff4e1f",
celeste: "#b9d7ea",
amarillo: "#f9af39",
violeta: "#dda7dd",
},
fontFamily: {
sans: [
"PP Fraktion Sans",
"ui-sans-serif",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
'"Helvetica Neue"',
"Arial",
'"Noto Sans"',
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
},
},
},
plugins: [],
};