45 lines
972 B
TypeScript
45 lines
972 B
TypeScript
import colours from "tailwindcss/colors";
|
|
import type { Config } from "tailwindcss";
|
|
import formsPlugin from '@tailwindcss/forms';
|
|
import typographyPlugin from "@tailwindcss/typography";
|
|
|
|
export default {
|
|
// content: [
|
|
// "./templates/**/*.html.twig",
|
|
// ],
|
|
theme: {
|
|
colors: {
|
|
black: "#000",
|
|
blue: {
|
|
primary: "#24608A",
|
|
400: "#60a5fa",
|
|
},
|
|
current: "currentColor",
|
|
grey: colours.stone,
|
|
inherit: "inherit",
|
|
transparent: "transparent",
|
|
white: "#fff",
|
|
},
|
|
|
|
extend: {
|
|
fontFamily: {
|
|
sans: [
|
|
"Roboto Condensed",
|
|
"Arial",
|
|
"Helvetica Neue",
|
|
"Helvetica",
|
|
"sans-serif",
|
|
],
|
|
},
|
|
|
|
typography: ({ theme }) => ({
|
|
DEFAULT: {
|
|
css: {
|
|
// '--tw-prose-pre-bg': theme('colors.red.200'),
|
|
},
|
|
},
|
|
}),
|
|
},
|
|
},
|
|
plugins: [formsPlugin, typographyPlugin],
|
|
} satisfies Config;
|