2022-12-04 14:46:22 +01:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2022-12-04 15:30:42 +01:00
|
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
dark: "#0D0D0D",
|
2022-12-08 19:21:25 +01:00
|
|
|
gray: "#131313",
|
2023-01-06 23:27:40 +01:00
|
|
|
hyroGold: "#fbc119",
|
2022-12-04 15:30:42 +01:00
|
|
|
},
|
2022-12-07 15:48:48 +01:00
|
|
|
dropShadow: {
|
|
|
|
yellow: ["0 35px 35px rgba(250, 193, 25, 0.5)"],
|
|
|
|
yellowalt: ["0 4px 12px rgba(250, 193, 25, 0.8)"],
|
|
|
|
},
|
2022-12-04 15:30:42 +01:00
|
|
|
},
|
|
|
|
},
|
2023-01-04 13:14:27 +01:00
|
|
|
plugins: [require("@tailwindcss/typography")],
|
2022-12-04 15:30:42 +01:00
|
|
|
};
|