| 1234567891011121314151617181920212223242526272829303132 |
- // Example `tailwind.config.js` file
- const colors = require("tailwindcss/colors");
- module.exports = {
- theme: {
- colors: {
- gray: colors.coolGray,
- blue: colors.lightBlue,
- red: colors.rose,
- pink: colors.fuchsia,
- },
- fontFamily: {
- sans: ["Graphik", "sans-serif"],
- serif: ["Merriweather", "serif"],
- },
- extend: {
- spacing: {
- 128: "32rem",
- 144: "36rem",
- },
- borderRadius: {
- "4xl": "2rem",
- },
- },
- },
- variants: {
- extend: {
- borderColor: ["focus-visible"],
- opacity: ["disabled"],
- },
- },
- };
|