2020-07-27 09:35:34 +00:00
|
|
|
/* eslint-disable */
|
|
|
|
|
2020-06-05 13:54:40 +00:00
|
|
|
module.exports = {
|
2020-10-14 16:03:42 +00:00
|
|
|
purge: ["./app/Views/**/*.php", "./app/Views/**/*.ts", "./app/Helpers/*.php"],
|
2021-04-02 17:20:02 +00:00
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
|
|
|
sans: ["Montserrat", "sans-serif"],
|
|
|
|
display: ["Kumbh Sans", "sans-serif"],
|
|
|
|
body: ["Montserrat", "sans-serif"],
|
|
|
|
},
|
|
|
|
colors: {
|
|
|
|
pine: {
|
|
|
|
50: "#ebf8f8",
|
|
|
|
100: "#cff7f3",
|
|
|
|
200: "#9df2e4",
|
|
|
|
300: "#5ee8d4",
|
|
|
|
400: "#1cd7ba",
|
|
|
|
500: "#08c09a",
|
|
|
|
600: "#07a57d",
|
|
|
|
700: "#009486",
|
|
|
|
800: "#006D60",
|
|
|
|
900: "#00564A",
|
|
|
|
},
|
|
|
|
rose: {
|
|
|
|
50: "#fcf9f8",
|
|
|
|
100: "#fdeef2",
|
|
|
|
200: "#fbcfe4",
|
|
|
|
300: "#faa7cd",
|
|
|
|
400: "#fb6ea5",
|
|
|
|
500: "#fc437c",
|
|
|
|
600: "#f24664",
|
|
|
|
700: "#dd1f47",
|
|
|
|
800: "#b21a39",
|
|
|
|
900: "#8e162e",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
spacing: {
|
|
|
|
112: "28rem",
|
|
|
|
},
|
|
|
|
gridTemplateColumns: {
|
|
|
|
podcasts: "repeat(auto-fill, minmax(14rem, 1fr))",
|
|
|
|
},
|
|
|
|
},
|
2020-09-04 09:09:26 +00:00
|
|
|
},
|
2021-04-02 17:20:02 +00:00
|
|
|
variants: {},
|
2020-07-27 09:35:34 +00:00
|
|
|
plugins: [
|
2021-04-02 17:20:02 +00:00
|
|
|
require("@tailwindcss/forms"),
|
2020-07-27 09:35:34 +00:00
|
|
|
require("@tailwindcss/typography"),
|
2021-04-02 17:20:02 +00:00
|
|
|
require("@tailwindcss/line-clamp"),
|
2020-07-27 09:35:34 +00:00
|
|
|
],
|
2020-06-10 15:00:12 +00:00
|
|
|
};
|