2024-01-03 20:00:00 +00:00
|
|
|
import colours from "tailwindcss/colors";
|
|
|
|
import type { Config } from "tailwindcss";
|
|
|
|
import typographyPlugin from "@tailwindcss/typography";
|
|
|
|
|
|
|
|
export default {
|
2024-01-03 20:00:00 +00:00
|
|
|
content: ["./source/**/*.{md,twig}"],
|
2024-01-03 20:00:00 +00:00
|
|
|
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",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [typographyPlugin],
|
|
|
|
} satisfies Config;
|