An experimental IndieWeb site built in Go.
1import { Config } from "npm:tailwindcss";
2
3export default {
4 content: [
5 "./html/**/*.templ",
6 ],
7 theme: {
8 extend: {
9 fontFamily: {
10 sans: "Recursive, sans-serif",
11 mono: "Recursive, monospace",
12 },
13 colors: {
14 base: "#191724",
15 surface: "#1f1d2e",
16 overlay: "#26233a",
17 muted: "#6e6a86",
18 subtle: "#908caa",
19 text: "#e0def4",
20 love: "#eb6f92",
21 gold: "#f6c177",
22 rose: "#ebbcba",
23 pine: "#31748f",
24 foam: "#9ccfd8",
25 iris: "#c4a7e7",
26 highlightLow: "#21202e",
27 highlightMed: "#403d52",
28 highlightHigh: "#524f67",
29 },
30 },
31 },
32 plugins: [],
33} as Config;