Files
md-to-html/tailwind.config.js
Sergey Filkin 5bb488ccd0
release / release (push) Has been cancelled
build / test (push) Successful in 11m1s
build / cross-compile (amd64, linux) (push) Failing after 5m43s
build / cross-compile (arm64, darwin) (push) Failing after 5m23s
build / cross-compile (arm64, linux) (push) Failing after 5m23s
Release v0.2.2
2026-04-18 14:42:16 +03:00

38 lines
958 B
JavaScript

module.exports = {
content: [
"./internal/ui/**/*.templ",
"./internal/ui/**/*.go",
"./web/template/**/*.html",
],
theme: {
extend: {
colors: {
background: "#ffffff",
foreground: "#0a0a0a",
card: "#ffffff",
"card-foreground": "#0a0a0a",
primary: "#171717",
"primary-foreground": "#fafafa",
secondary: "#f5f5f5",
"secondary-foreground": "#171717",
muted: "#f5f5f5",
"muted-foreground": "#737373",
accent: "#f5f5f5",
"accent-foreground": "#171717",
border: "#e5e5e5",
ring: "#0a0a0a",
input: "#e5e5e5",
destructive: "#dc2626",
},
boxShadow: {
xs: "0 1px 2px 0 rgb(0 0 0 / 0.04)",
},
fontFamily: {
sans: ["Geist", "ui-sans-serif", "system-ui", "sans-serif"],
mono: ["Geist Mono", "ui-monospace", "Menlo", "monospace"],
},
},
},
plugins: [],
};