2020-07-27 09:35:34 +00:00
|
|
|
/* eslint-disable */
|
2021-09-17 12:48:18 +00:00
|
|
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
2021-10-04 15:56:43 +00:00
|
|
|
const colors = require("tailwindcss/colors");
|
2020-07-27 09:35:34 +00:00
|
|
|
|
2020-06-05 13:54:40 +00:00
|
|
|
module.exports = {
|
2021-07-12 17:47:56 +00:00
|
|
|
mode: "jit",
|
|
|
|
purge: [
|
|
|
|
"./app/Views/**/*.php",
|
2021-08-23 11:05:16 +00:00
|
|
|
"./modules/**/Views/**/*.php",
|
2021-09-02 16:34:25 +00:00
|
|
|
"./themes/**/*.php",
|
2021-07-12 17:47:56 +00:00
|
|
|
"./app/Helpers/*.php",
|
|
|
|
"./app/Resources/**/*.ts",
|
|
|
|
],
|
2021-04-02 17:20:02 +00:00
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
2021-09-17 12:48:18 +00:00
|
|
|
sans: ["Inter", ...defaultTheme.fontFamily.sans],
|
|
|
|
display: ["Kumbh Sans", ...defaultTheme.fontFamily.sans],
|
2021-04-02 17:20:02 +00:00
|
|
|
},
|
|
|
|
colors: {
|
|
|
|
pine: {
|
2021-09-03 16:34:06 +00:00
|
|
|
50: "#F2FAF9",
|
|
|
|
100: "#E7F9E4",
|
|
|
|
200: "#bfe4e1",
|
|
|
|
300: "#99d4cf",
|
|
|
|
400: "#4db4aa",
|
|
|
|
500: "#009486",
|
|
|
|
600: "#008579",
|
|
|
|
700: "#006D60",
|
|
|
|
800: "#00564A",
|
|
|
|
900: "#003D0B",
|
2021-04-02 17:20:02 +00:00
|
|
|
},
|
|
|
|
rose: {
|
|
|
|
50: "#fcf9f8",
|
|
|
|
100: "#fdeef2",
|
|
|
|
200: "#fbcfe4",
|
|
|
|
300: "#faa7cd",
|
|
|
|
400: "#fb6ea5",
|
|
|
|
500: "#fc437c",
|
|
|
|
600: "#f24664",
|
|
|
|
700: "#dd1f47",
|
|
|
|
800: "#b21a39",
|
|
|
|
900: "#8e162e",
|
|
|
|
},
|
2021-10-04 15:56:43 +00:00
|
|
|
orange: colors.orange,
|
2021-04-02 17:20:02 +00:00
|
|
|
},
|
|
|
|
spacing: {
|
|
|
|
112: "28rem",
|
|
|
|
},
|
|
|
|
gridTemplateColumns: {
|
2021-10-13 15:43:40 +00:00
|
|
|
podcastLayout: "1fr minmax(auto, 768px) 1fr",
|
2021-04-02 17:20:02 +00:00
|
|
|
podcasts: "repeat(auto-fill, minmax(14rem, 1fr))",
|
|
|
|
},
|
2021-09-08 15:51:33 +00:00
|
|
|
zIndex: {
|
|
|
|
"-10": "-10",
|
|
|
|
},
|
2021-09-10 16:02:25 +00:00
|
|
|
borderWidth: {
|
|
|
|
3: "3px",
|
|
|
|
},
|
|
|
|
ringWidth: {
|
|
|
|
3: "3px",
|
|
|
|
},
|
2021-04-02 17:20:02 +00:00
|
|
|
},
|
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"),
|
2021-10-13 15:43:40 +00:00
|
|
|
require("@tailwindcss/aspect-ratio"),
|
2021-09-03 16:34:06 +00:00
|
|
|
require("tailwindcss-scroll-snap"),
|
2020-07-27 09:35:34 +00:00
|
|
|
],
|
2020-06-10 15:00:12 +00:00
|
|
|
};
|